본문 바로가기

BAEKJOON/JavaScript

[BAEKJOON] 한수 (1065번)

// const input  = require("fs").readFileSync("/dev/stdin").toString();
const input = "500".toString();

function arithmeticSequence(input) {
    let testCase = Number(input);
    let answer   = 0;

    for(let i = 1; i <= testCase; i++) {
        let strTestCase = i.toString();

        if(strTestCase < 100) {
            answer++;
            continue;
        } else {
            if( (strTestCase[0] - strTestCase[1]) === (strTestCase[1] - strTestCase[2]) ) {
                answer++;
                continue;
            }
        }
    }
    console.log(answer);
}

arithmeticSequence(input);

'BAEKJOON > JavaScript' 카테고리의 다른 글

[BAEKJOON] 셀프 넘버 (4673번)  (0) 2022.03.30
[BAEKJOON] 다이얼 (5622번)  (0) 2022.03.30
[BAEKJOON] 제로 (10773번)  (0) 2022.03.30
[BAEKJOON] 평균은 넘겠지 (4344번)  (0) 2022.03.29
[BAEKJOON] 팰린드롬수 (1259번)  (0) 2022.03.29