백준

백준 2164번: 카드 2 (파이썬)

inns21 2023. 7. 29. 23:03

from collections import deque

n = deque(i for i in range(1,int(input())+1)) 
while len(n) > 1:
  n.popleft()
  n.append(n[0])
  n.popleft()
print(n[0])