0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 15:05:24 +00:00
OI-codes/problem/P1138/P1138.cpp

23 lines
347 B
C++
Raw Normal View History

2020-09-29 12:52:45 +00:00
// R39029021
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, a[10005], k;
cin >> n >> k;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
sort(a, a + n);
n = unique(a, a + n) - a;
if (k >= n) {
cout << "NO RESULT" << endl;
}
else {
cout << a[--k];
}
return 0;
}