티스토리 뷰
import java.io.*;
import java.util.*;
public class Main_2164_카드2 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
Queue<Integer> queue = new ArrayDeque<Integer>();
for(int i=1; i<=N; i++) {
queue.offer(i);
}
while(queue.size() != 1) {
queue.poll();
queue.offer(queue.poll());
}
System.out.println(queue.poll());
}
}
'코딩테스트 > 백준' 카테고리의 다른 글
[BJ] 2563. 색종이 (0) | 2021.02.09 |
---|---|
[BJ] 1158. 요세푸스 문제 (0) | 2021.02.09 |
[BJ] 2493 탑 (0) | 2021.02.04 |
[BJ] 17478. 재귀함수가뭔가요 (0) | 2021.02.01 |
[백준] 16769: Mixing Milk (0) | 2020.11.15 |
댓글