

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
高橋くんは、偏りがない 面サイコロ 個と、 未満の正の整数 を 個持っています。 サイコロを 度振ると のいずれかの整数の目が出ます。 どの整数の目が出るかは同様に確からしく、サイコロを複数回振ったとき、何回目に出た目の値も互いに独立です。
高橋くんは、次の操作を行います。 はじめ、 です。
- サイコロを振り、 の値を 増やす。
- これまでに出た目の合計を とし、 が の倍数になったら、操作をやめる。
- 1. に戻る。
操作が終了したときの の期待値を で求めてください。
注意
この問題の制約のもとで、 の期待値は既約分数 として表せ、かつ を満たす整数 がただひとつ存在することが示せます。 このような を出力してください。
制約
- は整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを 行で出力せよ。
入力例 1Copy
1
出力例 1Copy
291034221
操作が終了したときの の期待値はおよそ で、 では です。
入力例 2Copy
720357616
出力例 2Copy
153778832
Score : points
Problem Statement
Takahashi has an unbiased six-sided die and a positive integer less than . Each time the die is cast, it shows one of the numbers with equal probability, independently of the outcomes of the other trials.
Takahashi will perform the following procedure. Initially, .
- Cast the die and increment by .
- Let be the sum of the numbers shown so far. If is a multiple of , quit the procedure.
- Go back to step 1.
Find the expected value of at the end of the procedure, modulo .
Notes
Under the constraints of this problem, it can be shown that the expected value of is represented as an irreducible fraction , and there is a unique integer such that . Print this .
Constraints
- is an integer.
Input
The input is given from Standard Input in the following format:
Output
Print a single line containing the answer.
Sample Input 1Copy
1
Sample Output 1Copy
291034221
The expected value of at the end of the procedure is approximately , and when represented modulo .
Sample Input 2Copy
720357616
Sample Output 2Copy
153778832