목록BOJ (74)
언젠가는 펼쳐 볼 아카이브
사용언어 : 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 = currentHou..
사용언어 : javascript - node.js # 제출코드 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().split('\n'); input = input[0]; input = input.split(' ').map((item) => +item); solution(input[0], input[1]); function solution(h, m) { let hour = h; let min = m - 45; if (min < 0) { if (hour === 0) { hour = 23; ..
사용언어 : javascript - node.js # 처음 제출한 코드 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().split('\n'); solution(input[0], input[1]); function solution(num1, num2) { const n1 = Number(num1); const n2 = Number(num2); if (n1 > 0 && n2 > 0) { console.log('1'); } else if (n1 0) { console..
사용언어 : javascript - node.js # 제출 코드 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim(); solution(+input); function solution(input) { if (input % 4 === 0 && input % 100 !== 0) { console.log('1'); } else if (input % 400 === 0) { console.log('1'); } else { console.log('0'); } }