Coins

AtCoder
IDabc087_b
Time2000ms
Memory256MB
Difficulty
You have $A$ $500$\-yen coins, $B$ $100$\-yen coins and $C$ $50$\-yen coins (yen is the currency of Japan). In how many ways can we select some of these coins so that they are $X$ 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 * $0 \leq A, B, C \leq 50$ * $A + B + C \geq 1$ * $50 \leq X \leq 20$ $000$ * $A$, $B$ and $C$ are integers. * $X$ is a multiple of $50$. ## Input Input is given from Standard Input in the following format: $A$ $B$ $C$ $X$ [samples]
Samples
Input #1
2
2
2
100
Output #1
2

There are two ways to satisfy the condition:

*   Select zero $500$\-yen coins, one $100$\-yen coin and zero $50$\-yen coins.
*   Select zero $500$\-yen coins, zero $100$\-yen coins and two $50$\-yen coins.
Input #2
5
1
0
150
Output #2
0

Note that the total must be exactly $X$ yen.
Input #3
30
40
50
6000
Output #3
213
API Response (JSON)
{
  "problem": {
    "name": "Coins",
    "description": {
      "content": "You have $A$ $500$\\-yen coins, $B$ $100$\\-yen coins and $C$ $50$\\-yen coins (yen is the currency of Japan). In how many ways can we select some of these coins so that they are $X$ yen in total? Coins ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc087_b"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You have $A$ $500$\\-yen coins, $B$ $100$\\-yen coins and $C$ $50$\\-yen coins (yen is the currency of Japan). In how many ways can we select some of these coins so that they are $X$ yen in total?\nCoins ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments