728x90
https://www.acmicpc.net/problem/1436
package BAEKJOON.Silver.Ⅴ;
import java.util.Scanner;
public class NO1436 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int answer = 0; // 출력
int count = 0; // n 값이 될때까지
while(count != n) {
// while 조건에 맞을 때 까지 answer 1씩 증가가 answer ++;
// answer 의 값에 666이 포함되어있으면 count ++
if (String.valueOf(answer).contains("666")) {
count++;
}
// count 가 n 값이 된다면 멈춤
if (count == n) {
break;
}
}
System.out.println(answer);
}
}
728x90
'Algorithm & SQL > BAEKJOON' 카테고리의 다른 글
백준 10816 JAVA 숫자 카드2 (0) | 2022.08.10 |
---|---|
백준 JAVA 15829 Hashing (0) | 2022.08.10 |
백준 JAVA 1181 단어 정렬 (0) | 2022.08.09 |
백준 JAVA 2751 수 정렬하기2 (0) | 2022.08.09 |
백준 JAVA 1158 요세푸스 문제 (0) | 2022.08.08 |
댓글