728x90
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)
}
728x90
'Development > 코딩테스트' 카테고리의 다른 글
[백준] 3003 Node.js (1) | 2022.09.22 |
---|---|
[백준] 10039 Node.js (0) | 2022.09.21 |
[백준] 2920 Node.js (0) | 2022.09.21 |
[백준] 2675 Node.js (0) | 2022.09.21 |
[백준] 10757 Node.js (0) | 2022.09.21 |
댓글