Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 차세대 보안 리더 양성 프로그램
- 11943
- 11109
- 공주대 정보보호
- 차세대 보안 리더 양성
- BoB 7기
- 2501
- 10833
- 정보보호 영재교육원
- 2476
- 4101
- acmicpc
- 리뷰
- BoB 후기
- 2506
- text
- 영재교육원
- 1547
- 2965
- 10995
- 5586
- BOB
- 정보보호 영재원
- Best of the Best
- Python
- 5086
- boj
- 영재원
- 2605
- EOF
Archives
- Today
- Total
짱해커가 되어보자
boj 2605 본문
* 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)))
Comments