CF670B.Game of Robots
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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.
输入格式
The first line contains two positive integers n and k ( 1<=n<=100000 , 1<=k<=min(2⋅109,n⋅(n+1)/2 ).
The second line contains the sequence id1,id2,...,idn ( 1<=idi<=109 ) — 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
说明/提示
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 .