| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 54543 | 季洁 | 第k小整数 | C++ | Compile Error | 0 | 0 MS | 0 KB | 169 | 2022-07-29 16:22:22 |
#include<bits/stdc++.h> using namespace std; int n,a[1010],i; int main(){ cin>>n>>k; while(n--) cin>>a[++i]; sort(a+1,a+n+1); cout<<a[k]<<endl; return 0; }