Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
54300 | 202203xhl | 第k小整数 | C++ | 通过 | 100 | 49 MS | 312 KB | 403 | 2022-07-29 14:26:07 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,k,t=0; int a[10005],b[10005]={0}; cin>>n>>k; for(int i=1;i<=n;i++){ cin>>a[i]; } for(int i=1;i<n;i++){ for(int j=i+1;j<=n;j++){ if(a[i]>a[j]) swap(a[i],a[j]); } } for(int i=1;i<=n;i++){ if(a[i]==a[i+1]) continue; t++; b[t]=a[i]; } if(b[k]==0) cout<<"NO RESULT"; else cout<<b[k]; return 0; }