CodeForces 670B Game of Robots
  0Ref4yMiVqwp 2023年11月02日 56 0


思路:水题



#include<bits\stdc++.h>
using namespace std;
const int maxn = 1e6;
int a[maxn];
int main()
{
	int n,k;
	scanf("%d%d",&n,&k);
	for (int i = 1;i<=n;i++)
		scanf("%d",&a[i]);
	int sum = 0;
    for (int i = 1;i<=n;i++)
	{
        sum+=i;
		if (sum>=k)
		{
			sum = i-(sum-k);
			printf("%d\n",a[sum]);
			break;
		}
	}
}




Description



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

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



The first line contains two positive integers n and k (1 ≤ n ≤ 100 000, 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.



Output



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



Sample Input



Input



2 2 1 2



Output



1



Input



4 5 10 4 18 3



Output



4






【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年11月08日 0

暂无评论

0Ref4yMiVqwp