250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 자바
- 네트워킹
- 일본어
- prettier-code formatter
- ScrollToPlugin
- Node.js
- 라이브러리
- 초연결사회의 데이터통신과 네트워킹
- java
- quizlet
- 데이터통신
- ArrayList
- 함수
- 단어장
- 연습문제
- 알고리즘
- gsap
- React
- 백준
- 이벤트
- 초연결 사회의 데이터통신과 네트워킹
- 한빛아카데미
- 자바스크립트
- JLPT
- html
- 스크롤
- Algorithm
- reactjs code snippets
- scrolly
- JavaScript
Archives
- Today
- Total
umilove98의 블로그
백준 1436 Java 자바 본문
반응형
처음에 문제를 대충 읽고 (n - 1) + "666" 을 출력하면 되겠거니 싶어서 해봤는데 안돼서 보니
반드시 맨 뒤에 "666"이 들어갈 필요 없이 6661 같은 숫자도 가능한 것이었다.
0부터 1씩 숫자를 키워가며 그 숫자에 666이 연속해서 들어가는지 판단하여 맞다면 cnt를 추가한다. cnt의 수가 n이 되는 순간 그 숫자를 출력한다.
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
31
32
33
34
35
36
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Q1436 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int num = 0;
int count = 0;
while(count != n) {
num++;
if(istrue(num)) { //해당 num에 666이 들어있다면 count++
count++;
}
}
System.out.println(num);
}
static boolean istrue(int num) {
char[] arr = Integer.toString(num).toCharArray();
for(int i = 0; i < arr.length; i++) { // 해당 숫자를 문자 배열로 집어넣고 연속되는 6이 3번 나오는지 확인
if(i != 0 && i != arr.length -1 && arr[i] == '6' && arr[i-1] == '6' && arr[i+1] == '6') {
return true;
}
}
return false;
}
}
|
cs |
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 1439 Java 자바 (0) | 2021.08.10 |
---|---|
백준 1864 Java 자바 (0) | 2021.08.10 |
백준 1837 Java 자바 (0) | 2021.08.09 |
백준 1427 Java 자바 (0) | 2021.08.07 |
백준 1598 Java 자바 (0) | 2021.08.06 |