728x90
const fs = require('fs');
const input = fs.readFileSync("/dev/stdin").toString().trim().split("\n");
let count = 0;
for(let i = 0; i < Number(input[0]); i++) {
if(Number(input[2]) === Number(input[1].split(' ')[i])) count++;
}
console.log(count);
728x90
'Development > 코딩테스트' 카테고리의 다른 글
[백준] 2738 node.js (0) | 2022.09.05 |
---|---|
[백준] 5597번 Node.js (0) | 2022.09.04 |
[백준] 10871 Node.js (0) | 2022.09.02 |
[백준] 10950 Node.js (0) | 2022.09.01 |
[백준] 10872 Node.js 팩토리얼 (0) | 2022.08.31 |
댓글