-코드
chess = [list(input()) for _ in range(8)]
cnt = 0
for i in range(8):
if i % 2 == 0:
for j in range(8):
if j % 2 == 0 and chess[i][j] == 'F':
cnt += 1
else:
for j in range(8):
if j % 2 != 0 and chess[i][j] == 'F':
cnt += 1
print(cnt)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬]9507번 Generations of Tribbles (0) | 2021.06.07 |
---|---|
[백준/파이썬]11653번 소인수분해 (0) | 2021.06.06 |
[백준/파이썬]9506번 약수들의 합 (0) | 2021.06.05 |
[백준/파이썬]1476번 날짜 계산 (0) | 2021.06.04 |
[백준/파이썬]10798번 세로읽기 (0) | 2021.06.03 |