Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
78012 王英泽 陶陶摘苹果 Python3 Accepted 35 MS 3768 KB 130 2024-06-16 09:31:46

Tests(10/10):


Code:

a=list (map(int,input().split())) h=int(input()) s=0 for i in range(0,10): if a[i]<=h+30: s+=1 print(s)