| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147585 | 何兴驰 | 序列变换II | C++ | Compile Error | 0 MS | 0 KB | 182 | 2026-02-06 11:30:55 |
#include<bits/stdc++.h> using namespace std; int main(){ int a[100],x; cin>>x; for(int i=0;i<x;i++){ cin>>a[i]; } for(int i=0;i<x;i++){ cout<<a[a[a[i]]<<" "; } }
Main.cc: In function 'int main()': Main.cc:10:20: error: invalid operands of types 'int' and 'const char [2]' to binary 'operator<<' cout<