import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int count = 0;
for(int i = 1; i<=n; i++) {
if(solution(i))
count++;
}
System.out.println(count);
}
static boolean solution(int n) {
boolean result = false;
if(n<100)
result = true;
else if(n<1000) {
int h = n/100;
int t = n%100/10;
int o = n%10;
if (h-t == t-o)
result=true;
}
return result;
}
}
'알고리즘왕 > BOJ' 카테고리의 다른 글
[백준/11720/JAVA] 숫자의 합 (0) | 2020.03.18 |
---|---|
[백준/11654/JAVA] 아스키 코드 (0) | 2020.03.18 |
[백준/4673/JAVA] 셀프 넘버 (0) | 2020.03.18 |
[백준/15596/JAVA] 정수 N개의 합 (0) | 2020.03.17 |
[백준/4344/JAVA] 평균은 넘겠지 - String format (0) | 2020.03.17 |