선릉역 1번 출구
baekjoon - 2605 본문
백준 2605 - 줄 세우기
https://www.acmicpc.net/problem/2605
n = int(input()) num = list(map(int, input().split())) student = [1] if num[1] == 1: student.insert(0,2) else: student.insert(1,2) // 2번 for i in range(2, n): student.insert(i - num[i],i+1) //3번부터 n번까지 print(" ".join(map(str,student))) |
'Algorithm > Algorithm 문제풀이' 카테고리의 다른 글
baekjoon - 1931 (0) | 2021.10.03 |
---|---|
baekjoon - 11866 (0) | 2021.10.03 |
baekjoon - 2161 (0) | 2021.10.03 |
baekjoon - 15886 (0) | 2021.10.03 |
baekjoon - 14467 (0) | 2021.10.03 |
Comments