-
코드
from collections import deque n, k = map(int, input().split()) num_list = [i+1 for i in range(n)] num_list = deque(num_list) answer = [] def yocefus(num_list): for i in range(k-1): x = num_list.popleft() num_list.append(x) answer.append(num_list.popleft()) for i in range(n): yocefus(num_list) answer = str(answer) answer = answer.replace("[","<") answer = answer.replace("]",">") print(answer)
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 10866번 덱 (파이썬) (0) 2021.12.28 [백준] 1966번 프린터 큐 (파이썬) (0) 2021.12.28 [백준] 2164번 카드2 (파이썬) (0) 2021.12.28 [백준] 18258번 큐 2 (파이썬) (0) 2021.12.28 [백준] 17298번 오큰수 (파이썬) (0) 2021.12.28