Hide

Problem L
Training, Round 3

Ashley is training for another programming contest on Brandon’s Online Judge.

Ashley has $k$ weeks left to train for her next programming contest. Her coach, Tom, is very busy and is no longer curating specific problems for Ashley to train on. At the start of every week, Tom picks $p$ distinct problems independently and uniformly at random from the bank of $n$ problems that Brandon’s Online Judge has and assigns them for Ashley to work on. Tom generates a total of $k$ sets of problems in this manner.

Ashley diligently solves every problem that Tom picks out. However, she gets annoyed if there exist two different weeks that share at least one problem in common, because she wants to solve unique problems.

Compute the probability that Ashley becomes annoyed.

Input

The first and only line of input contains three integers, $n$ $(1 \le n \le 10^7)$, $k$ $(1 \le k \le 10^7)$, and $p$ $(1 \le p \le n)$.

Output

Let $p$ be the probability that Ashley becomes annoyed. It can be shown that $p$ can be written as a rational number $\frac{x}{y}$ with $\gcd (x, y) = 1$ and $y \not\equiv 0 \pmod{998244353}$. Define $r$ to be the unique integer in $[0, 998244353)$ such that $r \cdot y \equiv x \pmod{998244353}$. Output $r$.

It can be shown that, under the constraints provided, $r$ is guaranteed to exist and also be unique.

Sample Explanation

In the first sample, we can show that the probability Ashley becomes annoyed is $\frac{7}{9}$. Note that $110916040 \cdot 9 \equiv 7 \pmod{998244353}$, therefore the output for that test case is $110916040$.

In the second sample, we can show that Ashley always becomes annoyed. Note that $1 \cdot 1 \equiv 1 \pmod{998244353}$, therefore the output for that test case is $1$.

In the third sample, we can show that Ashley never becomes annoyed. Note that $0 \cdot 1 \equiv 0 \pmod{998244353}$, therefore the output for that test case is $0$.

Sample Input 1 Sample Output 1
3 3 1
110916040
Sample Input 2 Sample Output 2
3 2 2
1
Sample Input 3 Sample Output 3
3 1 1
0

Please log in to submit a solution to this problem

Log in