Pagini recente » Cod sursa (job #881909) | Cod sursa (job #509489) | Cod sursa (job #1856857) | Cod sursa (job #437196) | Cod sursa (job #2308947)
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
#include <fstream>
#include <algorithm>
ifstream fin ("sdo.in");
ofstream fout ("sdo.out");
using namespace std;
int main()
{
int n, k, a[3000002];
fin >> n >> k;
for (int i = 0; i < n; i++)
fin >> a[i];
nth_element(a, a+k, a+n);
fout << a[++k] << "\n";
return 0;
}