출처 : https://www.acmicpc.net/problem/2164
In [1]:
from collections import deque
In [2]:
N = int(input())
card_array = deque([i+1 for i in range(N)])
In [3]:
while not(len(card_array)==1):
card_array.popleft()
card_array.rotate(-1)
In [4]:
print(card_array[0])
'알고리즘 > [Python] 백준' 카테고리의 다른 글
(Python) 백준 1120번 : 문자열 (0) | 2020.02.19 |
---|---|
(Python) 백준 14890번 : 경사로 (0) | 2020.02.19 |
(Python) 백준 3055번 : 탈출 (0) | 2020.02.18 |
(Python) 백준 6087번 : 레이저 통신 (0) | 2020.02.16 |
(Python) 백준 1547번 : 공 (0) | 2020.02.13 |