[Python] 백준 1100번 : 하얀 칸
2021. 8. 19. 01:31
https://www.acmicpc.net/problem/1100
import sys
input = sys.stdin.readline
board = []
for i in range(8):
board.append(list(map(str, input())))
result = 0
for i in range(8):
for j in range(8):
if (i+j)%2 == 0:
if board[i][j] == 'F':
result += 1
print(result)
'Programming > BOJ' 카테고리의 다른 글
[Python] 백준 11653번 : 소인수분해 (0) | 2021.08.19 |
---|---|
[Python] 백준 1157 : 단어 공부 (0) | 2021.08.19 |
[Python] 백준 1026번 : 보물 (0) | 2021.08.19 |
백준 문제집 모음 (0) | 2021.07.27 |
[Python] 백준 1977번 : 완전제곱수 (0) | 2021.05.04 |