문제 링크
풀이
const board = require("fs").readFileSync("/dev/stdin").toString().split(/\s/);
let count = 0;
for (let i=0; i<8; i++) {
for (let j=0; j<8; j++) {
if ((i+j)%2 === 0 && board[i][j] === "F") count++;
}
}
console.log(count);
짝수(0, 2, 4, 6) 번째 줄의 짝수 번째 칸, 홀수 번째 줄의 홀수 번째 칸은 흰색이다. 따라서 흰색 칸의 가로 세로 인덱스를 더한 값은 항상 짝수이다.
'연습장 > 백준(BOJ) 문제풀이' 카테고리의 다른 글
[백준 1026] 보물 with Python (0) | 2021.04.03 |
---|---|
[백준 1076] 저항 with Node.js (0) | 2021.04.03 |
[백준 13458] 시험 감독 with Node.js (0) | 2021.04.02 |
[백준 2902] KMP는 왜 KMP일까? with Node.js (0) | 2021.04.02 |
[백준 14501] 퇴사 with Python (0) | 2021.04.02 |