Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
74409 张康楠 老鼠喝水 Python3 Accepted 31 MS 3768 KB 136 2024-05-25 11:02:31

Tests(10/10):


Code:

n, t = map(int, input().split()) a = list(map(int, input().split())) ans = 0 for x in a: if x<=t: ans=ans+1 print(ans)