Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
167747 | 袁梓皓_B班 | 常用排序法 | C++ | 通过 | 100 | 28 MS | 1032 KB | 370 | 2024-08-19 17:19:10 |
#include <bits/stdc++.h> using namespace std; long long a[114514]; int main() { int n; cin >> n; for(int i = 1; i <= n; i ++) cin >> a[i]; /* for(int i = 1; i <= n; i ++) for(int j = i + 1; j <= n; j ++) if(a[i] > a[j]) swap(a[i],a[j]); */ sort(a + 1, a + n + 1); for(int i = 1; i <= n; i ++) printf("%lld ",a[i]); return 0; }