Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
68081 金浩 老鼠喝水 Python3 Accepted 29 MS 3756 KB 128 2024-03-19 08:12:28

Tests(10/10):


Code:

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