반응형
https://www.acmicpc.net/problem/1100
답안
graph = []
cnt = 0
for _ in range(8):
graph.append(list(input()))
for i in range(0, 8, 2): # 0 2 4 6
for j in range(0, 8, 2):
if graph[i][j] == 'F':
cnt += 1
for i in range(1, 9, 2): # 1 3 5 7
for j in range(1, 9, 2):
if graph[i][j] == 'F':
cnt += 1
print(cnt)
하얀 칸만 체크해 주면 되기 때문에 2중 for 문으로 해결하였다.
반응형
'BOJ > Python' 카테고리의 다른 글
백준 11655번 ROT13 파이썬 (0) | 2022.02.24 |
---|---|
백준 10798번 세로읽기 파이썬 (0) | 2022.02.23 |
백준 10808번 알파벳 개수 파이썬 (0) | 2022.02.23 |
백준 2902번 KMP는 왜 KMP일까? 파이썬 (0) | 2022.02.22 |
백준 2468번 안전 영역 파이썬 DFS (0) | 2022.02.22 |