Score : $300$ points
How many integer sequences of length $N$, $A=(A_1, \ldots, A_N)$, satisfy all of the conditions below?
$1\le A_i \le M$ $(1 \le i \le N)$
$\displaystyle\sum _{i=1}^N A_i \leq K$
Since the count can get enormous, find it modulo $998244353$.
Input is given from Standard Input in the following format:
$N$ $M$ $K$
Print the answer.
2 3 4
6
The following six sequences satisfy the conditions.
31 41 592
798416518
Be sure to print the count modulo $998244353$.