from collections import deque
import sys
N = int(sys.stdin.readline().strip())
my_card = deque(list(range(1, N+1)))
while len(my_card) != 1:
my_card.popleft()
my_card.append(my_card.popleft())
print(*my_card)
'파이썬 코테 준비' 카테고리의 다른 글
[백준 1021] 회전하는 큐 - Python(파이썬) (0) | 2021.02.15 |
---|---|
[백준 10866] 덱 - Python(파이썬) (0) | 2021.02.15 |
[백준 1966] 프린터 큐 - Python(파이썬) (0) | 2021.02.15 |
[백준 11866] 요세푸스 문제 0 - Python(파이썬) (0) | 2021.02.15 |
[백준 18258] 큐 2 - Python(파이썬) (0) | 2021.02.15 |
댓글