hiho week 37 register

Ended

Participants:317

Verdict:Accepted
Score:100 / 100
Submitted:2015-03-14 21:55:57

Lang:G++

Edit
1
2
3
4
5
6
7
8
9
10
11
12
13
#include<stdio.h>
#include<algorithm>
using namespace std;
int in[1000003];
int main()
{
    int a,b;
    scanf("%d%d",&a,&b);
    for(int i=0;i<a;i++)scanf("%d",&in[i]);
    sort(in,in+a);
    printf("%d\n",in[b-1]);
    return 0;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX