https://www.acmicpc.net/problem/2605
1
2
3
4
5
6
7
8
|
def sol(n,nums):
answer=[]
for i in range(1,n+1):
answer.insert(nums[i-1],i)
return answer[::-1]
n=int(input())
nums=list(map(int, input().split()))
print(*sol(n,nums))
|
cs |
이 문제는 정수들을 입력받고 insert하는 내용인데 문제 읽어보면 거꾸로 가는거죠? reverse 하면 됩니다~
(In this problem, Input are Integers, To do is to insert, and reverse)
반응형
'python-algorithm' 카테고리의 다른 글
백준 11557 Yangjojang of The Year (0) | 2022.10.05 |
---|---|
백준 25642 젓가락 게임 (0) | 2022.10.05 |
백준 10988 팰린드롬인지 확인하기 (0) | 2022.10.04 |
백준 2999 비밀 이메일 (0) | 2022.10.03 |
백준 baekjoon 2846 오르막길 (0) | 2022.09.29 |
댓글