2342.Game of Robots

Time Limit: 1s Memory Limit: 256MB

In late autumn evening n robots gathered in the cheerful company of friends. Each robot has a unique identifier- an integer from 1 to 109.

At some moment, robots decided to play the game "Snowball". Below there are the rules of this game. First, all robots stand in a row. Then the first robot says his identifier. After that the second robot says the identifier of the first robot and then says his own identifier. Then the third robot says the identifier of the first robot, then says the identifier of the second robot and after that says his own. This process continues from left to right until the n-th robot says his identifier.

Your task is to determine the k-th identifier to be pronounced.

Input Format(From the terminal/stdin)

The first line contains two positive integers n and k (1 \le n \le 100000, 1 \le k \le min(2 \cdot 109,n \cdot (n+1)/2).

The second line contains the sequence id1,id2,...,idn (1 \le idi \le 109)- identifiers of roborts. It is guaranteed that all identifiers are different.

Output Format(To the terminal/stdout)

Print the k-th pronounced identifier (assume that the numeration starts from 1).

Sample Input 1

Copy
2 2
1 2
 · \n
 · \n

Sample Output 1

Copy
1
 \n

Sample Input 2

Copy
4 5
10 4 18 3
 · \n
  · ·  · \n

Sample Output 2

Copy
4
 \n

Hints

In the first sample identifiers of robots will be pronounced in the following order: 1, 1, 2. As k=2, the answer equals to 1.

In the second test case identifiers of robots will be pronounced in the following order: 10, 10, 4, 10, 4, 18, 10, 4, 18, 3. As k=5, the answer equals to 4.

Submit

请先 登录

© 2025 FAQs