언젠가는 펼쳐 볼 아카이브
[BOJ] 2525 - 오븐 시계 본문
사용언어 : javascript - node.js
# 제출 코드
const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
const data = fs.readFileSync(filePath).toString().split('\n');
const currentClock = data[0].split(' ').map((item) => +item);
solution(currentClock[0], currentClock[1], +data[1]);
function solution(currentHour, currentMin, clock) {
const totalMin = currentHour * 60 + currentMin + clock;
let h = Math.floor(totalMin / 60);
let m = totalMin % 60;
if (h >= 24) {
h -= 24;
}
console.log(`${h} ${m}`);
}
'IT > Baekjoon Oline Judge' 카테고리의 다른 글
[BOJ] 10950번 - A+B - 3 (0) | 2023.08.16 |
---|---|
[BOJ] 2480번 - 주사위 세개 (0) | 2023.08.15 |
[BOJ] 2884 - 알람시계 (0) | 2023.08.15 |
[BOJ] 14681번 - 사분면 고르기 (0) | 2023.08.15 |
[BOJ] 2753번 - 윤년 (0) | 2023.08.15 |