• 문제 링크
https://www.acmicpc.net/problem/1057
• 풀이 코드
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
public class Main {
public static void main(String[] args) throws IOException {
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
read();
int a = read(), b = read(), i = 1;
while ((a -= a / 2) != (b -= b / 2)) i++;
bw.write(String.valueOf(i));
bw.flush();
}
private static int read() throws IOException {
int c, n = System.in.read() & 15;
while ((c = System.in.read()) > 32) n = (n << 3) + (n << 1) + (c & 15);
return n;
}
}
'Problem Solving > Baekjoon' 카테고리의 다른 글
[백준] 16951 블록 놀이 - Brute Force / Java (0) | 2025.02.12 |
---|---|
[백준] 2531 회전 초밥 - Brute Force / Java (0) | 2025.02.11 |
[백준] 33241 Ducks and Sharks - Data Structure / Java (0) | 2025.02.09 |
[백준] 11645 I’ve Been Everywhere, Man - Data Structure / Java (0) | 2025.02.08 |
[백준] 29813 최애의 팀원 - Data Structure / Java (0) | 2025.02.07 |
댓글