

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
整数 が均等な確率で出るルーレットがあります。
これを使って 人で以下のゲームを行います。
- 先攻と後攻が交互にルーレットを回す。
- 出た整数が今までに出ていないものであった場合、何も起こらない。
- そうでない場合、ルーレットを回したプレイヤーが罰金 円を支払う。
- 個の整数全てが少なくとも 度出たとき、直ちにゲームが終了する。
先攻後攻それぞれについて、ゲームが終了するまでに支払う罰金の期待値を で求めてください。
期待値 の定義
この問題で求める期待値は必ず有理数になることが証明できます。 また、この問題の制約下では、求める期待値を既約分数 で表したときに が で割り切れないことが保証されます。
このとき を満たすような 以上 以下の整数 が一意に定まります。この を答えてください。
制約
- は を満たす整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えとして つの整数を出力せよ。
そのうち つ目は先攻が支払う罰金の期待値、 つ目は後攻が支払う罰金の期待値をそれぞれ で表現した整数である。
入力例 1Copy
1
出力例 1Copy
0 0
この入力では です。
先攻がルーレットを回すと必ず が出て、直ちにゲームが終了します。
よって、支払う罰金の期待値は先攻後攻ともに です。
入力例 2Copy
2
出力例 2Copy
332748118 665496236
この入力では です。ゲームの進行の一例は以下の通りです。
- 先攻がルーレットを回し、 が出た。この時、何も起こらない。
- 後攻がルーレットを回し、 が出た。この時、後攻は罰金 円を支払う。
- 先攻がルーレットを回し、 が出た。この時、先攻は罰金 円を支払う。
- 後攻がルーレットを回し、 が出た。この時、何も起こらない。
- この時点で が少なくとも 度出たので、直ちにゲームが終了する。
- このようにゲームが進行した場合、先攻が支払う罰金は 円、後攻が支払う罰金も 円となります。
先攻が支払う罰金の期待値は 円、後攻が支払う罰金の期待値は 円であることが示せます。
入力例 3Copy
3
出力例 3Copy
174692763 324429416
Points: points
Problem Statement
There is a roulette that produces an integer from with equal probability.
Two players use it to play the following game:
- The players take turns spinning the roulette.
- If the produced integer has not appeared before, nothing happens.
- Otherwise, the player who spun the roulette pays a fine of yen.
- The game immediately ends when all of the integers have appeared at least once.
For each of the first and second players, find the expected value of the amount of the fine paid before the game ends, modulo .
On expected values modulo
It can be proved that the expected values sought in this problem are always rational numbers. Furthermore, under the constraints of this problem, when the expected values are expressed as irreducible fractions , it is guaranteed that is not divisible by .
Now, there is a unique integer between and , inclusive, such that . Provide this as the answer.
Constraints
- is an integer such that .
Input
The input is given from Standard Input in the following format:
Output
Print two integers as the answer.
The first is the expected value of the amount of the fine paid by the first player, and the second is the expected value of the amount of the fine paid by the second player, represented as integers modulo .
Sample Input 1Copy
1
Sample Output 1Copy
0 0
In this input, .
When the first player spins the roulette, it always produces , ending the game immediately.
Thus, the expected values of the amounts of the fines paid by the first and second players are both .
Sample Input 2Copy
2
Sample Output 2Copy
332748118 665496236
In this input, . Here is a possible progression of the game:
- The first player spins the roulette, and it produces . Nothing happens.
- The second player spins the roulette, and it produces . The second player pays a fine of yen.
- The first player spins the roulette, and it produces . The first player pays a fine of yen.
- The second player spins the roulette, and it produces . Nothing happens.
- At this point, both and have appeared at least once, so the game immediately ends.
- In this progression, the amount of the fine paid by the first player is yen, and the amount of the fine paid by the second player is also yen.
It can be shown that the expected value of the amount of the fine paid by the first player is yen, and the expected value of the amount of the fine paid by the second player is yen.
Sample Input 3Copy
3
Sample Output 3Copy
174692763 324429416