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

[백준/파이썬] 11176번 In the Shower

by 현장 2024. 7. 2.

-Code

for _ in range(int(input())):
    e, n = map(int, input().split())
    res = 0

    for _ in range(n):
        b = int(input())

        if b > e:
            res += 1
    print(res)