Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
84394 丁俊杰 老鼠喝水 Python3 Accepted 42 MS 3760 KB 164 2024-07-15 18:46:36

Tests(10/10):


Code:

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