Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
74208 小徐老师 老鼠喝水 Python3 Accepted 38 MS 3772 KB 137 2024-05-24 14:27:13

Tests(10/10):


Code:

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