

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
注意
この問題に対する言及は、2021/10/02 18:00 JST まで禁止されています。言及がなされた場合、賠償が請求される可能性があります。 試験後に総合得点や認定級を公表するのは構いませんが、どの問題が解けたかなどの情報は発信しないようにお願いします。
問題文
数列が 個あり、 番目の数列は長さ , 初項 , 公差 の等差数列です。
個の数列を全て連結して つの数列にしたとき、小さい方から 番目の要素を答えてください。
制約
- 入力は全て整数である。
入力
入力は以下の形式で標準入力から与えられる。
出力
連結した数列の小さい方から 番目の要素を出力せよ。
入力例 1Copy
2 4 3 2 2 2 3 4
出力例 1Copy
6
番目の数列は 、 番目の数列は なので、この二つの数列を連結すると になります。
よって 番目に小さい要素は となります。
入力例 2Copy
2 10 4 1000000000 1000000000 6 1000000000 1000000000
出力例 2Copy
6000000000
答えが bit 整数に収まらない可能性があることに注意してください。
入力例 3Copy
5 10 3 1 4 1 5 9 2 6 5 3 5 8 9 7 9
出力例 3Copy
16
Score : points
Warning
Do not make any mention of this problem until October 2, 2021, 6:00 p.m. JST. In case of violation, compensation may be demanded. After the examination, you can reveal your total score and grade to others, but nothing more (for example, which problems you solved).
Problem Statement
We have sequences of numbers. The -th of them is an arithmetic progression of length with the initial term and the common difference .
If all these sequences are concatenated into one sequence, what is the -th smallest element of that sequence?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the -th smallest element of the sequence after the concatenation.
Sample Input 1Copy
2 4 3 2 2 2 3 4
Sample Output 1Copy
6
The first sequence is , and the second sequence is , so we have after the concatenation.
Therefore, the fourth smallest element is .
Sample Input 2Copy
2 10 4 1000000000 1000000000 6 1000000000 1000000000
Sample Output 2Copy
6000000000
Note that the answer may not fit into a -bit integer.
Sample Input 3Copy
5 10 3 1 4 1 5 9 2 6 5 3 5 8 9 7 9
Sample Output 3Copy
16