본문 바로가기

BAEKJOON/JavaScript

[BAEKJOON] 달팽이는 올라가고 싶다 (2869번)

// const testCase  = require("fs").readFileSync("/dev/stdin").toString().trim().split(" ");
// const testCase = "2 1 5".toString().trim().split(" ");
// const testCase = "5 1 6".toString().trim().split(" ");
const testCase = "100 99 1000000000".toString().trim().split(" ");

function snailWantsToClimb(testCase) {
    let dayTime   = testCase[0];
    let nightTime = testCase[1];
    let height    = testCase[2];
    let answer = Math.ceil((height - nightTime) / (dayTime - nightTime));

    console.log(answer);
}

snailWantsToClimb(testCase);

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

[BAEKJOON] 크로아티아 알파벳 (2941번)  (0) 2022.03.30
[BAEKJOON] 단어 정렬 (1181번)  (0) 2022.03.30
[BAEKJOON] 셀프 넘버 (4673번)  (0) 2022.03.30
[BAEKJOON] 다이얼 (5622번)  (0) 2022.03.30
[BAEKJOON] 한수 (1065번)  (0) 2022.03.30