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