짱해커가 되어보자

boj 2605 본문

프로그래밍_일반/백준

boj 2605

Spadework 2020. 2. 21. 09:40

* Solved 기준 브론즈2 단순 풀이

n,l = int(input()), []
s = list(map(int,input().split()))
for i in range(n):
	l.insert(s[i],str(i+1))
print(' '.join(reversed(l)))

 

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 2846  (0) 2020.02.22
boj 2605  (0) 2020.02.21
boj 10807  (0) 2020.02.21
boj 2592  (0) 2020.02.21
boj 10995  (0) 2020.02.21
Comments