-Code
n, m = map(int, input().split())
cnt = 0
for _ in range(n):
score = list(map(int, input().split()))
if score.count(0) == 0:
cnt += 1
print(cnt)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 20877번 Minigolf (0) | 2022.11.21 |
---|---|
[백준/파이썬] 15238번 Pirates (0) | 2022.11.20 |
[백준/파이썬] 25904번 안녕 클레오파트라 세상에서 제일가는 포테이토칩 (0) | 2022.11.18 |
[백준/파이썬] 25270번 99 Problems (0) | 2022.11.17 |
[백준/파이썬] 25985번 Fastestest Function (0) | 2022.11.16 |