比赛 |
EYOI与SBOI开学欢乐赛6th |
评测结果 |
WWWWWWWWWW |
题目名称 |
IOI2099 |
最终得分 |
0 |
用户昵称 |
什么都想学什么都学了一点的晓无痕 |
运行时间 |
0.077 s |
代码语言 |
C++ |
内存使用 |
1.79 MiB |
提交时间 |
2022-09-19 20:47:48 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,k;
priority_queue<int>p;
int main(void)
{
freopen("player.in","r",stdin);
freopen("player.out","w",stdout);
scanf("%d%d",&n,&k);
for(int i=1;i<=n;++i)
{
int personscore;
scanf("%d",&personscore);
p.push(personscore);
}
int cnt=k/2;
for(int i=1;i<=cnt;++i)
{
p.pop();
}
int ans=p.top();
printf("%d",ans);
return 0;
}