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 |
Tags
- ORM
- ws
- greedy
- TDD
- Python
- pytest
- stateful
- algorithm
- permutations
- codecov
- Gunicorn
- combinations
- dictionary
- Django
- Git
- Unit Testing
- Programmers
- Bruteforce
- stack&que
- Q objects
- SQL
- utils
- postreSQL
- Query
- stateless
- 백준
- Stack
- AWS
- HTTP 완벽 가이드
- was
Archives
- Today
- Total
해피 코딩!
[백준] 요세푸스 문제0 본문
link
length, remove_point = map(int, input().split())
lst = [i for i in range(1, length+1)]
answer = []
index = 1
while lst:
if index == remove_point:
answer.append(lst.pop(0))
index = 1
continue
else:
index+=1
lst.append(lst.pop(0))
result = '<'
for w in answer[:-1]:
result+=f'{w}, '
result += f'{answer[-1]}>'
print(result)
'알고리즘' 카테고리의 다른 글
[프로그래머스] 피보나치 수 (0) | 2020.12.17 |
---|---|
그래프 기본 탐색 알고리즘 - BFS, DFS (0) | 2020.12.13 |
[백준] 영화감독 숌 1436번 (0) | 2020.12.12 |
[백준] 블랙잭 2798번 (0) | 2020.12.12 |
[백준] 덩치 7568번 (0) | 2020.12.12 |
Comments