| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146302 | 刘杨国卿 | 序列变换 | C++ | Accepted | 1 MS | 272 KB | 197 | 2026-01-28 10:48:53 |
#include<bits/stdc++.h> using namespace std; int main(){ int a[100],b; cin>>b; for(int i=0;i<b;i++){ cin>>a[i]; } for(int i=0;i<b;i++){ cout<<a[a[i]-1]<<" "; } return 0; }