

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
高橋君は 曲からなるプレイリストを持っています。
曲 の長さは 秒です。
高橋君は時刻 にプレイリストのランダム再生を開始しました。
ランダム再生では、 曲の中から等確率で つを選びその曲を最後まで再生することが繰り返されます。 ここで、曲の再生は休みなく行われ、 つの曲が終わったらすぐに次に選ばれた曲が始まります。 また、同じ曲が連続して選ばれる事もあります。
時刻 から 秒後に曲 が再生されている確率を で求めてください。
確率 の定義
この問題で求める確率は必ず有理数になることが証明できます。 また、この問題の制約下では、求める確率を既約分数 で表したときに が で割り切れないことが保証されます。
このとき を満たすような 以上 以下の整数 が一意に定まります。この を答えてください。
制約
- 入力はすべて整数
入力
入力は以下の形式で標準入力から与えられる。
出力
時刻 から 秒後にプレイリストの 番目の曲が再生されている確率を で出力せよ。
入力例 1Copy
3 6 3 5 6
出力例 1Copy
369720131
時刻 から 秒後に曲 が流れているパターンとしてあり得るのは、
- 曲 曲 曲
- 曲 曲
- 曲 曲
の順で音楽が再生された場合であり、これらのいずれかが起こる確率は となります。
であるため、 を出力します。
入力例 2Copy
5 0 1 2 1 2 1
出力例 2Copy
598946612
時刻 から 秒後には最初に再生された曲が再生されているため、求める確率は となります。
同じ長さの異なる曲が存在することがあることに注意してください。
入力例 3Copy
5 10000 1 2 3 4 5
出力例 3Copy
586965467
Score : points
Problem Statement
Takahashi has a playlist with songs.
Song lasts seconds.
Takahashi has started random play of the playlist at time .
Random play repeats the following: choose one song from the songs with equal probability and play that song to the end. Here, songs are played continuously: once a song ends, the next chosen song starts immediately. The same song can be chosen consecutively.
Find the probability that song is being played seconds after time , modulo .
How to print a probability modulo
It can be proved that the probability to be found in this problem is always a rational number. Also, the constraints of this problem guarantee that when the probability to be found is expressed as an irreducible fraction , is not divisible by .
Then, there is a unique integer between and , inclusive, such that . Report this .
Constraints
- All input values are integers.
Input
The input is given from Standard Input in the following format:
Output
Print the probability, modulo , that the first song in the playlist is being played seconds after time .
Sample Input 1Copy
3 6 3 5 6
Sample Output 1Copy
369720131
Song will be playing seconds after time if songs are played in one of the following orders.
- Song Song Song
- Song Song
- Song Song
The probability that one of these occurs is .
We have , so you should print .
Sample Input 2Copy
5 0 1 2 1 2 1
Sample Output 2Copy
598946612
seconds after time , the first song to be played is still playing, so the sought probability is .
Note that different songs may have the same length.
Sample Input 3Copy
5 10000 1 2 3 4 5
Sample Output 3Copy
586965467