728x90
반응형
구현 문제이다.
ft_split 과제를 할 때 만들었던 단어의 개수를 구해주는 함수와 똑같은 방식으로 해결한 것 같다.
n, m = map(int, input().split())
li = [input() for _ in range(n)]
cnt = 0
for i in range(n):
j = 0
while j < m:
if li[i][j] == '|':
j += 1
else:
cnt += 1
while j < m and li[i][j] == '-':
j += 1
for j in range(m):
i = 0
while i < n:
if li[i][j] == '-':
i += 1
else:
cnt += 1
while i < n and li[i][j] == '|':
i += 1
print(cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 5692번 팩토리얼 진법(python) (0) | 2021.02.15 |
---|---|
백준 알고리즘 1996번 지뢰 찾기(python) (0) | 2021.02.15 |
백준 알고리즘 1356번 유진수(python) (0) | 2021.02.15 |
백준 알고리즘 1312번 소수(python) (0) | 2021.02.15 |
백준 알고리즘 1296번 데이트(python) (0) | 2021.02.15 |