Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ㅂ
- 이진탐색
- dp
- 오픽노잼
- stack 스택
- 주석
- 영어회화
- 오픽점수잘받는방법
- opic
- English
- 메모이제이션
- fibo
- XML주석
- 오픽노잼공부방법
- 다이나믹프로그래밍
- 오픽
- 안드로이드
- 탑다운
- topdown
- XML
- 오픽가격
- dynamicProgramming
- 영어말하기
- 이진탐색 #나무 자르기
- 안드로이드주석
- 피보나치수열
- 바텀업
- 디피
- 오픽공부법
Archives
RUBY
[백준] 요세푸스 문제 0 본문
출처:: 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