Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
55628 蔡璟恒 陶陶摘苹果 Python3 Accepted 35 MS 3764 KB 160 2023-07-30 14:47:19

Tests(10/10):


Code:

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