100 atcoder#ABC087B. [ABC087B] Coins
[ABC087B] Coins
Score : points
Problem Statement
You have -yen coins, -yen coins and -yen coins (yen is the currency of Japan). In how many ways can we select some of these coins so that they are yen in total?
Coins of the same kind cannot be distinguished. Two ways to select coins are distinguished when, for some kind of coin, the numbers of that coin are different.
Constraints
- , and are integers.
- is a multiple of .
Input
Input is given from Standard Input in the following format:
Output
Print the number of ways to select coins.
2
2
2
100
2
There are two ways to satisfy the condition:
- Select zero -yen coins, one -yen coin and zero -yen coins.
- Select zero -yen coins, zero -yen coins and two -yen coins.
5
1
0
150
0
Note that the total must be exactly yen.
30
40
50
6000
213