Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
154188 胡海峰老师 序列变换 Python3 Accepted 46 MS 3764 KB 129 2026-05-24 16:29:03

Tests(10/10):


Code:

n = int(input()) a = list(map(int,input().split())) b = [0]*n i=0 for ele in a: b[i] = a[ele-1] i+=1 print(*b)