728x90
https://www.acmicpc.net/problem/1100
import sys
graph = [ list(sys.stdin.readline().rstrip()) for _ in range(8) ]
cnt = 0
for i in range(8):
for j in range(8):
if graph[i][j] == 'F' and (i+j) % 2 == 0:
cnt += 1
print(cnt)
문자열 문제 분류에서 찾았는데 왜 문자열 문제인지 모르겠다.
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 7567 파이썬(python) : 그릇 (0) | 2022.07.20 |
---|---|
[백준] 10820 파이썬(python) : 문자열 분석 (0) | 2022.07.19 |
[백준] 11719 파이썬(python) : 그대로 출력하기 2 (0) | 2022.07.19 |
[백준] 1302 파이썬(python) : 베스트셀러 (0) | 2022.07.19 |
[백준] 10988 파이썬(python) : 팰린드롬인지 확인하기 (0) | 2022.07.19 |