https://www.acmicpc.net/problem/1065
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int answer = 0;
if (n <100){
answer = n;
}else{
answer = 99;
for (int i = 100; i <= n; i++){
int check1 = i/100 - i%100/10;
int check2 = i%100/10 - i%10;
if (check1 == check2){
answer +=1;
}
}
}
System.out.println(answer);
}
}
'Algorithm > 백준풀이' 카테고리의 다른 글
[알고리즘 문제풀이] 백준 10828 스택 (JAVA코드) (0) | 2022.02.27 |
---|---|
[알고리즘 문제풀이] 백준 - N과M(2) / JAVA(자바) (0) | 2022.02.06 |
[알고리즘 문제풀이] 백준 4673 셀프 넘버 /JAVA (0) | 2022.01.30 |
[알고리즘 문제풀이] 백준 2798 블랙잭 /JAVA (0) | 2022.01.30 |
[알고리즘 문제풀이] 백준 2309 일곱 난쟁이 /JAVA (0) | 2022.01.30 |
댓글