https://www.acmicpc.net/problem/2605
insert만 알면 푸는 문제였다.
append는 뒤에 추가하기
insert는 인덱스를 지정해서 그 위치에 넣기
라고 생각하면 된다.
N = int(input())
arr = list(map(int, input().split()))
bucket = []
for i in range(N):
bucket.insert(i-arr[i], i+1)
print(*bucket)
'파이썬 알고리즘' 카테고리의 다른 글
[파이썬] 백준 2491 수열 (0) | 2022.10.03 |
---|---|
[파이썬] SWEA 13702 델타검색 (1) | 2022.10.01 |
[파이썬] 6190 정곤이의 단조 증가하는 수 (1) | 2022.10.01 |
[파이썬] 13748 진기의 최고급 붕어빵 (1) | 2022.10.01 |
[파이썬] 백준 2309 일곱 난쟁이 풀이 2가지 (1) | 2022.09.30 |