Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155699 胡富航 序列变换II C++ Compile Error 0 MS 0 KB 254 2026-06-12 20:31:42

Tests(0/0):


Code:

#include<iostream> using namespace std; int a[10005]; int main() { int n; cin>>n; for(int i=1;i<=n;i++) { cin>>a[i]; } for(int i=1;i<=n;i++) { cout<<a[a[a[i]]]; if(i!=n) { cout<<" "; } cout<<endl; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:21:1: error: expected '}' at end of input
 }
 ^