728x90
const fs = require('fs');
const input = fs.readFileSync("/dev/stdin").toString().trim().split("\n").map(Number);
const obj = {}
input.forEach((n, i) => {
obj[n%42] = obj[n%42]? obj[n%42] +1 : 1
})
console.log(Object.keys(obj).length)
728x90
'Development > 코딩테스트' 카테고리의 다른 글
[백준] 1085 Node.js (0) | 2022.09.29 |
---|---|
[백준] 1259 Node.js (0) | 2022.09.28 |
[백준] 15829 Node.js (1) | 2022.09.27 |
[백준] 2577 Node.js (1) | 2022.09.26 |
[백준] 1546 Node.js (0) | 2022.09.25 |
댓글