본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 31776번 예비 소집 결과 보고서

by 현장 2024. 4. 30.

-Code

res = 0

for _ in range(int(input())):
    t = list(map(int, input().split()))
    if sum(t) == -3:
        continue

    for i in range(3):
        if t[i] == -1:
            t[i] = 121

    if t[0] <= t[1] <= t[2]:
        res += 1

print(res)