Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
76241 胡皓宇 老鼠喝水 Python3 Accepted 37 MS 3772 KB 148 2024-06-02 09:23:56

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)