| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76586 | sh25_shenpy | 四驱车比赛-总排名 | C++ | Accepted | 0 MS | 252 KB | 252 | 2025-12-19 15:33:05 |
#include <bits/stdc++.h> #include<algorithm> using namespace std; int s[6]; int main() { for(int i=0;i<6;++i){ cin>>s[i]; } int n; n=sizeof(s)/sizeof(s[0]); sort(s,s+n); for(int x:s) cout<<x<<" "; return 0; }