| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 130655 | 胥博雯 | 序列变换 | C++ | Compile Error | 0 MS | 0 KB | 419 | 2025-09-14 16:04:43 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,a[101]={},t; cin>>n; for(int i=0;i<n;i++) cin>>a[i]; for(int i=0;i<n;i++){ t=a[i]; cout<<a[t-1]<<' '; return 0; }
Main.cc: In function 'int main()': Main.cc:16:1: error: expected '}' at end of input } ^