| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76425 | sh25_shenpy | 四驱车比赛第一轮排名 | C++ | Compile Error | 0 MS | 0 KB | 306 | 2025-12-19 14:56:37 |
#include <bits/stdc++.h> using namespace std; int s[10]; int main() { for(int i=0;i<6;++i) cin>>s[i];} if(s[0]>s[1]){ for(int j=1;j<=5;j++){ cout<<s[j]<<" ";} cout<<s[0];} else{ for(int k=0;k<6;k++){ cout<<s[k]<<" "; } } return 0; }