분류 전체보기87 [백준] 3003 Node.js const fs = require('fs'); const input = fs.readFileSync("/dev/stdin").toString().trim().split(" ").map(Number); const c = [1,1,2,2,2,8]; let result = ''; input.forEach((item, i) => { result += (c[i] - input[i]) +' '; }) console.log(result) 2022. 9. 22. [백준] 10039 Node.js const fs = require('fs'); const input = fs.readFileSync("/dev/stdin").toString().trim().split("\n").map(Number); let sum = 0; for(let i=0; i 2022. 9. 21. [백준] 8958 Node.js const fs = require('fs'); const [n, ...arr] = fs.readFileSync("/dev/stdin").toString().trim().split("\n"); for(let i=0; i < Number(n); i++) { let result = 0; let temp = 0; for(let j=0; j < arr[i].length; j++) { if(arr[i][j] == 'O') { temp += 1; result += temp; } else { temp = 0; } } console.log(result) } 2022. 9. 21. [백준] 2920 Node.js 반복문 + sort 를 이용해서 풀려고 하다가... 어차피 상황이 3개로밖에 안나뉘는 것 같아서 그냥 객체로 처리 const fs = require('fs'); const input = fs.readFileSync("/dev/stdin").toString().trim(); const result = { '1 2 3 4 5 6 7 8': 'ascending', '8 7 6 5 4 3 2 1': 'descending' }[input]; console.log(result || 'mixed') 2022. 9. 21. 이전 1 2 3 4 5 6 7 8 ··· 22 다음