• 문제 링크
https://www.acmicpc.net/problem/3062
• 풀이 코드
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));
StringBuilder sb = new StringBuilder();
int t = read();
while (t-- > 0) {
int n = read(), sum = n + reverse(n);
sb.append(sum == reverse(sum) ? "YES\n" : "NO\n");
}
bw.write(sb.toString());
bw.flush();
}
private static int reverse(int n) {
int r = 0;
do r = r * 10 + n % 10; while ((n /= 10) > 0);
return r;
}
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' 카테고리의 다른 글
[백준] 5613 계산기 프로그램 - Implementation / Java (0) | 2025.03.12 |
---|---|
[백준] 2774 아름다운 수 - Implementation / Java (0) | 2025.03.11 |
[백준] 2783 삼각 김밥 - Implementation / Java (0) | 2025.03.09 |
[백준] 13280 Selection of Participants of an Experiment - Brute Force / Java (0) | 2025.03.08 |
[백준] 13774 Palindromes - Brute Force / Java (0) | 2025.03.08 |
댓글