CF670B.Game of Robots

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

In late autumn evening nn robots gathered in the cheerful company of friends. Each robot has a unique identifier — an integer from 11 to 10910^{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 nn -th robot says his identifier.

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

输入格式

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

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

输出格式

Print the kk -th pronounced identifier (assume that the numeration starts from 11 ).

输入输出样例

  • 输入#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: 11 , 11 , 22 . As k=2k=2 , the answer equals to 11 .

In the second test case identifiers of robots will be pronounced in the following order: 1010 , 1010 , 44 , 1010 , 44 , 1818 , 1010 , 44 , 1818 , 33 . As k=5k=5 , the answer equals to 44 .

首页