MARBLES - Marbles
Hänschen dreams he is in a shop with an infinite amount of marbles. He is allowed to select n marbles. There are marbles of k different colors. From each color there are also infinitely many marbles. Hänschen wants to have at least one marble of each color, but still there are a lot of possibilities for his selection. In his effort to make a decision he wakes up. Now he asks you how many possibilites for his selection he would have had. Assume that marbles of equal color can't be distinguished, and the order of the marbles is irrelevant.
Input
The first line of input contains a number T ≤ 100 that indicates the number of test cases to follow. Each test case consists of one line containing n and k, where n is the number of marbles Hänschen selects and k is the number of different colors of the marbles. You can assume that 1 ≤ k ≤ n ≤ 1000000.
Output
For each test case print the number of possibilities that Hänschen would have had. You can assume that this number fits into a signed 64 bit integer.
Example
Input: 2 10 10 30 7 Output: 1 475020
hide comments
suraj_13:
2019-01-10 20:12:15
[Spoiler:]
|
|
Muhammad Ashlah Shinfain:
2018-04-01 09:29:00
i think if this solution is not intended using big integer the answer in description should be mentioned to modulo with a value (such as 1000000007)
|
|
tushar8848:
2018-01-08 15:47:56
Admin should revise the test cases. Accepting wrong solutions!!
|
|
learner4life:
2017-09-16 15:52:57
I appear to have misunderstood the question.
|
|
shubham9261:
2017-09-15 18:05:53
well,,it z smthng like a1+a2+a3+a4+.......+ak=n-k;
|
|
vib_s02:
2017-09-06 16:16:38
how do you see those accepted codes?
|
|
sid_1462:
2017-06-23 20:20:15
getting TLE in JAVA, not even a single java code accepted in top 70-80 |
|
arpit_nitd:
2017-05-27 14:09:13
Beggars Method!! Last edit: 2017-05-27 14:12:01 |
|
sunny:
2017-03-23 13:48:11
bars and stars :-).
|
|
rohit9934:
2017-03-17 17:10:37
Solution is hidden in this line "Hänschen wants to have at least one marble of each color". Make a funciton that gives nCr of two numbers and then use your mind. |
Added by: | Adrian Kuegel |
Date: | 2004-06-19 |
Time limit: | 1s |
Source limit: | 10000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: NODEJS PERL6 VB.NET |
Resource: | own problem |