python求助,新手,code外请标上知识点!

P1046 [NOIP2005 普及组] 陶陶摘苹果

EC75 @ 2021-11-21 17:22:38

求助code以及 知识点 !


by ajahjahah @ 2021-11-21 17:29:28

@dd同学 这个只是模拟


by ajahjahah @ 2021-11-21 17:30:17

全都遍历一次,如果够得到(手高度+30)就ans+1 然后print(ans)


by ajahjahah @ 2021-11-21 17:31:03

而且题解有python的


by EC75 @ 2021-11-21 18:10:29

@lao_ba thanks,我去看看.


by youzi726 @ 2021-12-09 16:16:12

list1=input().split() height=int(input()) a=0 for i in range(10): if int(list1[i])<=height+30: a=a+1

i=i+1

print(a)


|