목록BOJ (74)
언젠가는 펼쳐 볼 아카이브
[BOJ] 18108번 - 1998년생인 내가 태국에서는 2541년생?!
사용 언어 : 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) { console.log(input - 543); } >> 결과 : 정답
IT/Baekjoon Oline Judge
2023. 8. 15. 17:56
[BOJ] 10926번 - ??!
사용 언어 : javascript - node.js > 백준 온라인에서는 자바스크립트를 따로 지원하지 않아서 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); function solution(A) { console.log(`${A}??!`); } >> 결과 : 틀렸습니다. 아니 왜죠? 흑흑 VS code 에서는 무슨 입력값을 넣어도 정상적으로 나왔다. 근데 틀렸댄다. 단순히 입력을 받아서 ..
IT/Baekjoon Oline Judge
2023. 8. 15. 17:50