728x90
반응형
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
static int N;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
int cnt = 0;
while (N > 0){
cnt += solution(N);
N--;
}
System.out.println(cnt);
}
private static int solution(int n) {
if(n<100) return 1;
if(100<= n && n < 1000){
int a = String.valueOf(n).charAt(0);
int b = String.valueOf(n).charAt(1);
int c = String.valueOf(n).charAt(2);
if((a-b) == (b-c)){
return 1;
}else{
return 0;
}
}
return 0;
}
}
728x90
반응형
'알고리즘 > 일반(단순구현)' 카테고리의 다른 글
[백준] 9237번 이장님 초대 #Java (0) | 2022.06.21 |
---|---|
[백준] 1676번 팩토리얼 0의 개수 #Java (0) | 2022.06.07 |
[백준] 17478번 재귀함수가 뭔가요? #Java (0) | 2022.05.17 |
[백준] 7568번 : 덩치 #Java (0) | 2022.05.07 |
[백준] 2292번 벌집 #Java (0) | 2022.05.07 |