Problem B
The Gourmet
Languages
en
sv
The French gourmet Frank is a very well-respected gourmet; his job involves going around to various restaurants, eating their food and then writing a review about the restaurant. But he carries a dark secret: he is actually only interested in eating as much as possible and in any order!
However, Frank understands that a true gourmet can’t eat in just any manner, like starting with his dessert and finishing with a salad. Therefore, he asks for your help in constructing a list with all the different ways he could arrange his courses during a meal, so that he can pick the best order.
During the serving, Frank has
Your task is to write a program to compute the number of ways he could arrange his meal, given these restrictions.
Input
The first line contains an integer
The second line contains an integer
Afterwards,
Output
The program should output the number of ways in which Frank
can eat during exactly
The answer will always be at most 2 billion (
Scoring
Your solution will be tested on a set of test case groups. To get the points for a group, you need to pass all the test cases in the group.
Group |
Points |
Constraints |
|
|
The answer will be less than |
|
|
No additional constraints |
Scoring
Your program will be tested on
For test cases worth
Explanation of Sample
Frank is going to eat during
Sample Input 1 | Sample Output 1 |
---|---|
10 2 7 3 |
2 |
Sample Input 2 | Sample Output 2 |
---|---|
12 6 1 3 3 5 6 12 |
498 |