728x90
import sys
n = int(sys.stdin.readline())
graph = [ sys.stdin.readline().rstrip() for _ in range(n) ]
row_cnt, col_cnt = 0, 0
for i in range(n):
for j in graph[i].split('X'):
if len(j) >= 2:
row_cnt += 1
for i in range(n):
col = 0
for j in range(n):
if graph[j][i] == '.':
col += 1
else:
col = 0
if col == 2: #1
col_cnt += 1
print(row_cnt, col_cnt)
#1 : col이 2라면 col_cnt +1
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 7785 파이썬(python) : 회사에 있는 사람 (0) | 2022.09.10 |
---|---|
[백준] 5586 파이썬(python) : JOI와 IOI (0) | 2022.09.09 |
[백준] 2693 파이썬(python) : N번째 큰 수 (0) | 2022.09.06 |
[백준] 10867 파이썬(python) : 중복 빼고 정렬하기 - (★) (0) | 2022.09.05 |
[백준] 1743 파이썬(python) : 음식물 피하기 (0) | 2022.09.03 |