Number of Dice Rolls With Target Sum

You have n dice, and each dice has k faces numbered from 1 to k.

Given three integers n, k, and target, return the number of possible ways, out of the k^n total ways, to roll the dice so that the sum of the face-up numbers equals target.

Since the answer may be too large, return it modulo 10^9 + 7.

Example 1
Inputn = 1, k = 6, target = 3
Output1
You throw one die with 6 faces, and there is only one way to get a sum of 3.
Example 2
Inputn = 2, k = 6, target = 7
Output6
There are 6 ways to get a sum of 7: 1+6, 2+5, 3+4, 4+3, 5+2, and 6+1.

Constraints

  • 1 <= n, k <= 30
  • 1 <= target <= 1000

Asked at 5 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate