| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 167408 | 卢铠铭 | 常用排序法 | C++ | Runtime Error | 15 | 2 MS | 248 KB | 221 | 2024-08-19 16:32:47 |
#include<bits/stdc++.h> using namespace std; int a[1001]; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ cin>>a[i]; } sort(a+1,a+1+n); for(int i=1;i<=n;i++){ cout<<a[i]<<" "; } return 0; }