Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
54516 木木老师 陶陶摘苹果 Python3 Accepted 36 MS 3772 KB 151 2023-07-23 13:58:49

Tests(10/10):


Code:

arr=[] for i in map(int,input().split()): arr.append(i) a=int(input()) count=0 for i in arr : if i<=a+30: count+=1 print(count)