| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83884 | sh25_zhoumy | 求第k大数 | C++ | Accepted | 0 MS | 256 KB | 210 | 2026-02-03 15:32:29 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,k; cin>>n>>k; int s[n]; for(int i=0;i<n;++i) cin>>s[i]; sort(s,s+n,greater<int>()); cout<<s[k-1]; return 0; }