Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Android
- 책추천
- CustomTab
- 학습지
- 진짜학습지후기
- 코틀린
- androidstudio
- 안드로이드
- jlpt
- blog
- 일본어기초
- suspend
- rxjava
- Kotlin
- 책리뷰
- coroutine
- GIT
- n3문법
- 진짜일본어
- PR
- 진짜학습지
- 일본어문법
- KotlinInAction
- 인공지능
- github
- ai
- pullrequest
- webflux
- errorhandling
- posting
Archives
코딩하는 개굴이
BaekJoon/BOJ [JAVA] 한수_1065 본문
반응형
BaekJoon/BOJ [JAVA] 한수_1065
HINT: 적혀있는 예시는 쓸데없다.... 흥 111->100 876->138 예시를 참고하세요
import java.util.ArrayList;
import java.util.Scanner;
public class baekjoon_1065 {
public static void main(String[] argv) {
Scanner scanner = new Scanner(System.in);
int input = scanner.nextInt();
int count=0;
for(int i=1;i<=input;i++) {
if(figure(i)) count++;
}
System.out.println(count+"");
}
public static boolean figure(int num) {
ArrayList<Integer>array = new ArrayList<>();
while(num>=1) {
array.add(num%10);
num/=10;
}
int diff=0;
boolean figure = true;
for(int i=0;i<array.size()-1;i++) {
if(i==0) diff = array.get(i)-array.get(i+1);
else {
if(diff != array.get(i)-array.get(i+1)) {figure = false;}
}
}
return figure;
}
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] OX 퀴즈_8958 (0) | 2019.01.06 |
---|---|
BaekJoon/BOJ [JAVA] 단어의 개수_1152 (0) | 2019.01.03 |
BaekJoon/BOJ [JAVA] 셀프 넘버_4673 (0) | 2019.01.03 |
BaekJoon/BOJ [JAVA] 더하기 사이클_1110 (0) | 2018.11.25 |
BaekJoon/BOJ [JAVA] 시험 성적_9498 (0) | 2018.11.25 |
Comments