题库练习 Game of Robots
← 上一题 下一题 →

A10445 | Game of Robots

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

In late autumn evening $n$ robots gathered in the cheerful company of friends. Each robot has a unique identifier — an integer from $1$ to $10^{9}$ .

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.

输入格式

The first line contains two positive integers $n$ and $k$ ( $1<=n<=100000$ , $1<=k<=min(2·10^{9},n·(n+1)/2$ ).

The second line contains the sequence $id_{1},id_{2},...,id_{n}$ ( $1<=id_{i}<=10^{9}$ ) — identifiers of roborts. It is guaranteed that all identifiers are different.

输出格式

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

输入输出样例

输入 #1
2 2
1 2
输出 #1
1
输入 #2
4 5
10 4 18 3
输出 #2
4
C++ 编辑器
输入
输出