

Time Limit: 3 sec / Memory Limit: 256 MB
配点 : 点
問題文
Atcoder国に、 本の東西方向に走る鉄道が完成しました。
この鉄道には 個の駅があり、西から順に ,,, の番号がついています。
明日、鉄道の開通式が開かれます。
この鉄道では、 を満たす全ての整数 に対して、駅 から駅 に、 秒で向かう列車が運行されます。ただし、これら以外の列車は運行されません。
駅 から駅 に移動する列車のうち最初の列車は、開通式開始 秒後に駅 を発車し、その後は 秒おきに駅 を発車する列車があります。
また、 は で割り切れることが保証されます。
つまり、 で を で割った余りを表すとき、, を満たす全ての に対してのみ、開通式開始 秒後に駅 を出発し、開通式開始 秒後に駅 に到着する列車があります。
列車の乗り降りにかかる時間を考えないとき、全ての駅 に対して、開通式開始時に駅 にいる場合、駅 に到着できるのは最も早くて開通式開始何秒後か、答えてください。
制約
- 入力は全て整数
入力
入力は以下の形式で標準入力から与えられる。
出力
行目 に、開通式開始時に駅 にいる場合、駅 に到着できるのが最も早くて開通式開始 秒後のとき、 を出力せよ。
入力例 1Copy
3 6 5 1 1 10 1
出力例 1Copy
12 11 0
駅 からは、以下のように移動します。
- 開通式開始 秒後に、駅 に向かう列車に乗る。
- 開通式開始 秒後に、駅 に到着する。
- 開通式開始 秒後に、駅 に向かう列車に乗る。
- 開通式開始 秒後に、駅 に到着する。
駅 からは、以下のように移動します。
- 開通式開始 秒後に、駅 に向かう列車に乗る。
- 開通式開始 秒後に、駅 に到着する。
駅 に対しても、 を出力しなければならないことに注意してください。
入力例 2Copy
4 12 24 6 52 16 4 99 2 2
出力例 2Copy
187 167 101 0
入力例 3Copy
4 12 13 1 44 17 17 66 4096 64
出力例 3Copy
4162 4162 4162 0
Score : points
Problem Statement
A railroad running from west to east in Atcoder Kingdom is now complete.
There are stations on the railroad, numbered through from west to east.
Tomorrow, the opening ceremony of the railroad will take place.
On this railroad, for each integer such that , there will be trains that run from Station to Station in seconds. No other trains will be operated.
The first train from Station to Station will depart Station seconds after the ceremony begins. Thereafter, there will be a train that departs Station every seconds.
Here, it is guaranteed that divides .
That is, for each Time satisfying and , there will be a train that departs Station seconds after the ceremony begins and arrives at Station seconds after the ceremony begins, where denotes modulo , and there will be no other trains.
For each , find the earliest possible time we can reach Station if we are at Station when the ceremony begins, ignoring the time needed to change trains.
Constraints
- All input values are integers.
Input
Input is given from Standard Input in the following format:
Output
Print lines. Assuming that we are at Station when the ceremony begins, if the earliest possible time we can reach Station is seconds after the ceremony begins, the -th line should contain .
Sample Input 1Copy
3 6 5 1 1 10 1
Sample Output 1Copy
12 11 0
We will travel from Station as follows:
- seconds after the beginning: take the train to Station .
- seconds: arrive at Station .
- seconds: take the train to Station .
- seconds: arrive at Station .
We will travel from Station as follows:
- seconds: take the train to Station .
- seconds: arrive at Station .
Note that we should print for Station .
Sample Input 2Copy
4 12 24 6 52 16 4 99 2 2
Sample Output 2Copy
187 167 101 0
Sample Input 3Copy
4 12 13 1 44 17 17 66 4096 64
Sample Output 3Copy
4162 4162 4162 0