

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
縦 行、横 列のグリッドがあります。
このグリッドから一様ランダムに 個のマスを選びます。選んだマスを全て含むような(グリッドの軸に辺が平行な)最小の長方形に含まれるマスの個数がスコアとなります。
得られるスコアの期待値を で求めてください。
有理数 とは
求める期待値は必ず有理数となることが証明できます。 またこの問題の制約下では、その値を互いに素な つの整数 , を用いて と表したとき、 かつ を満たす整数 がただ一つ存在することが証明できます。この を求めてください。制約
- 入力はすべて整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
2 2 2
出力例 1Copy
665496238
マス とマス が選ばれた場合、またはマス とマス が選ばれた場合の 通りではスコアは となります。また、それ以外の 通りではスコアは となります。
よって得られるスコアの期待値は であり、 なので が答えとなります。
入力例 2Copy
10 10 1
出力例 2Copy
1
入力例 3Copy
314 159 2653
出力例 3Copy
639716353
Score : points
Problem Statement
We have a grid with rows and columns.
We choose cells in this grid uniformly at random. The score is the number of cells in the minimum rectangle (whose edges are parallel to the axes of the grid) that contains all of the chosen cells.
Find the expected score modulo .
What is rational number modulo ?
We can prove that the sought expected value is always a rational number. Moreover, under the Constraints of this problem, when the value is represented as by two coprime integers and , we can prove that there is a unique integer such that and . Find such .Constraints
- All values in the input are integers.
Input
The input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
2 2 2
Sample Output 1Copy
665496238
The score equals in the following two cases: if cells and are chosen, or cells and are chosen. The other four cases yield a score of .
Thus, the expected score equals . Since , you should print .
Sample Input 2Copy
10 10 1
Sample Output 2Copy
1
Sample Input 3Copy
314 159 2653
Sample Output 3Copy
639716353