| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 82983 | sh25_zhuhy | 选择排序 | C++ | 通过 | 0 MS | 244 KB | 220 | 2026-01-18 19:20:59 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int s[n]; for(int i=0;i<n;++i){ cin>>s[i]; } sort(s,s+n); for(int x:s) cout<<x<<" "; return 0; }