| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 41147 | jiabokai | 练59.1 第n大的数 | C++ | No Test Data | 0 MS | 0 KB | 149 | 2024-02-19 17:41:15 |
#include<bits/stdc++.h> using namespace std; int main(){ int a[10]={200,99,98,95,87,87,75,30,-12,-25},n; cin>>n; cout<<a[n-1]; return 0; }