Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
61157 | laichihao | 求第k大数 | C++ | Wrong Answer | 0 MS | 240 KB | 186 | 2025-02-22 15:35:28 |
#include<iostream> using namespace std; int main(){ int m,n; cin>>m>>n; int a[m]; for(int i=0;i<=m;i++){ cin>>a[i]; } cout<<a[n]; return 0; }