0
点赞
收藏
分享

微信扫一扫

P1046 [NOIP2005 普及组] 陶陶摘苹果(python3实现)

彭维盛 2022-02-01 阅读 39

https://www.luogu.com.cn/problem/P1046

"""

P1046 [NOIP2005 普及组] 陶陶摘苹果(python3实现)
https://www.luogu.com.cn/problem/P1046

"""

ans=0

a=list(map(int,input().split()))

b=int(input())

for i in range(10):

       if a[i]<=b+30:
                   ans+=1

print(ans)
            


举报

相关推荐

0 条评论