| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 73179 | sh25_shenpy | 四驱车比赛第一轮排名 | C++ | Accepted | 0 MS | 240 KB | 268 | 2025-11-07 17:53:10 |
#include <bits/stdc++.h> using namespace std; int main( ) { int a,b,c,d,e,f; cin>>a>>b>>c>>d>>e>>f; if(a>b) cout<<b<<" "<<c<<" "<<d<<" "<<e<<" "<<f<<" "<<a; else cout<<a<<" "<<b<<" "<<c<<" "<<d<<" "<<e<<" "<<f; return 0; }