https://www.acmicpc.net/problem/11866 11866번: 요세푸스 문제 0 첫째 줄에 N과 K가 빈 칸을 사이에 두고 순서대로 주어진다. (1 ≤ K ≤ N ≤ 1,000) www.acmicpc.net code from collections import deque n, k = map(int,input().split()) deq = deque() for i in range(1,n+1): deq.append(i) print('') 이번문제는 처음에는 큐로 해결할 생각을 하지 못하고 리스트로 해결했었다. 오답 코드는 아래와 같다. import sys input = sys.stdin.readline n, k = map(int,input().split()) x = k a = [i for ..