赞
踩
#include<bits/stdc++.h> #define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); using namespace std; int main() { IOS int n, k; cin>>n>>k; int a[n]; for(int i=0;i<n;i++) { cin>>a[i]; } sort(a,a+n); cout<<a[k-1]<<endl; }
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。