Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
74866 胡皓宇 老鼠喝水 Python3 Accepted 38 MS 3772 KB 148 2024-05-26 10:02:13

Tests(10/10):


Code:

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