문제 링크
풀이
const n = +require("fs").readFileSync("/dev/stdin").toString()
let num = 666;
let count = 1;
while (count !== n) {
num++;
if (String(num).includes("666")) count++;
}
console.log(num);
num을 1씩 늘려가면서 num내에 연속된 666이 존재할 때마다 카운트를 증가시켜 목표한 카운트(n)에 도달할 때까지 반복한다.
'연습장 > 백준(BOJ) 문제풀이' 카테고리의 다른 글
[백준 10816] 숫자 카드 2 with Node.js (0) | 2021.04.13 |
---|---|
[백준 2217] 로프 with Node.js (0) | 2021.04.13 |
[백준 1018] 체스판 다시 칠하기 with Node.js (0) | 2021.04.11 |
[백준 2108] 통계학 with Python (0) | 2021.04.11 |
[백준 10814] 나이순 정렬 with Node.js (0) | 2021.04.10 |