RUBY

[백준] 요세푸스 문제 0 본문

PS/BOJ

[백준] 요세푸스 문제 0

RUBY_루비 2020. 10. 13. 23:59

출처:: https://www.acmicpc.net/problem/11866

분류:: 큐

 

1. 문제 이해 및 해결과정

 

2. 풀이방법

 1. [ python ] 큐

#요세푸스 문제 0
#https://www.acmicpc.net/problem/11866
import sys
from collections import deque
sys.stdin = open("input.txt","r")
n,k=map(int,input().split())
q=deque(i for i in range(1,n+1))
res=[]
while q:
    q.rotate(-(k-1))
    res.append(q.popleft())
i=1
cnt=0
print("<",end='')
for i in range(len(res)):
    if i==len(res)-1:
        print("%d>" %res[i])
    else:
        print("%d, " %res[i],end='')

 

3. 오답원인

 

4. 알게된 점

 

'PS > BOJ' 카테고리의 다른 글

[백준] 대소문자 바꾸기  (0) 2024.02.13
[백준] 경쟁적 전염  (0) 2020.10.14
[백준] 카드2  (0) 2020.10.12
[백준] 트리  (0) 2020.10.10
[백준] 링크와 스타트  (0) 2020.10.09
Comments