문제 링크 : link
티어: 실버4
from collections import deque
def main():
N, K = map(int, input().split(' '))
queue = deque([(i + 1) for i in range(N)])
ans = []
for i in range(N):
queue.rotate(-(K - 1))
ans.append(str(queue.popleft()))
ans = ', '.join(ans)
print(f'<{ans}>')
if __name__ == '__main__':
main()
[ 알고리즘 ] 백준 1874 - 스택 수열 (1) | 2022.09.22 |
---|---|
[ 알고리즘 ] 백준 10866 - 덱 (1) | 2022.09.21 |
댓글 영역