import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
int n = kb.nextInt();
Queue<Integer> queue = new LinkedList<>();
StringBuilder sb = new StringBuilder();
for(int i=1; i<n+1; i++) {
queue.add(i);
}
while(queue.size()>1) {
sb.append(queue.poll()).append(" ");
int a = queue.poll();
queue.add(a);
}
sb.append(queue.poll());
System.out.println(sb);
}
}
'공부기록 > 백준' 카테고리의 다른 글
[백준] 1759번 암호 만들기 (0) | 2023.12.19 |
---|---|
[백준] 1182번 부분수열의 합 (0) | 2023.12.19 |
[백준] 10813번 공 바꾸기 (1) | 2023.12.19 |
[백준] 2798번 블랙잭 (1) | 2023.12.19 |
[백준] 14888 연산자 끼워넣기 (0) | 2023.12.18 |