| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147590 | 鸡哥 | 数组中元素交换 | C++ | Output Limit Exceeded | 0 MS | 280 KB | 196 | 2026-02-06 12:55:43 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,a[101]; cin>>n; for(int i = 1;i<=n;i++){ cin>>a[i]; } for(int i = 1;i<=n;i--){ cout<<a[i]<<" "; } return 0; }