Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
87848 | 陈昊然 | 序列变换 | C++ | Wrong Answer | 0 MS | 272 KB | 182 | 2024-08-15 11:40:00 |
#include<bits/stdc++.h> using namespace std; int main(){ int AK[5]; cin>>AK[1]>>AK[3]>>AK[0]>>AK[4]>>AK[2]; for(int i=0;i<=4;i++){ cout<<AK[i]<<" "; } return 0; }
------Input------
41 29 15 24 21 3 14 13 9 30 35 18 16 16 37 17 3 25 15 21 10 38 26 14 39 20 2 37 34 10 9 17 35 40 26 22 19 5 5 30 13 13
------Answer-----
10 17 39 38 24 37 16 30 9 22 15 3 3 5 25 24 20 17 38 35 5 2 37 30 10 15 5 26 35 30 25 22 13 2 26 21 3 3 9 16 16
------Your output-----
15 41 21 29 24