Development/코딩테스트47 [백준] 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. [백준] 2675 Node.js const T = Number(input.shift()); for(let i = 0; i < T; i++) { let result = ""; const [num, str] = input[i].split(" "); for(let j = 0; j < str.length; j++) { result += str[j].repeat(Number(num)) } console.log(result) } 2022. 9. 21. 이전 1 2 3 4 5 6 7 8 ··· 12 다음