1098: 陶陶摘苹果 摘要:参考代码:arr = list(map(int, input().split())) h = int(input()) count = 0 for i in range(len(arr)): …… 题解列表 2024年03月20日 0 点赞 0 评论 119 浏览 评分:0.0
淘淘摘苹果 摘要:解题思路:注意事项:参考代码:apple=list(map(int,input().split()))high=eval(input())high_all=high+30n=0for i in ran…… 题解列表 2024年08月12日 0 点赞 0 评论 53 浏览 评分:0.0
1098——————陶陶摘苹果 摘要: n = list(map(int,input().split())) m = int(input())+30 s = 0 for i in n: …… 题解列表 2022年09月24日 0 点赞 0 评论 190 浏览 评分:0.0
陶陶摘苹果 摘要:解题思路:只要苹果距离地面小于或等于陶陶能达到的高度即表示能摘到注意事项:参考代码:L = list(map(int,input().split()))a = int(input())s = 0for…… 题解列表 2023年03月18日 0 点赞 0 评论 91 浏览 评分:0.0
1098: 陶陶摘苹果 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))b=int(input())+30c=0for i in a: if i<=b: c+…… 题解列表 2023年01月04日 0 点赞 0 评论 68 浏览 评分:0.0
陶陶摘苹果 摘要:解题思路:注意事项:参考代码:ls = list(map(int,input().split()))h = int(input())c = 0for i in range(0,len(ls)): …… 题解列表 2023年11月26日 0 点赞 0 评论 109 浏览 评分:0.0
优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:j=0l=list(map(int,input().split()))t=int(input())z=t+30for h in l: if h<=z: …… 题解列表 2024年07月24日 0 点赞 0 评论 54 浏览 评分:0.0
不是我在装,这道题目真的很简单(捂脸) 摘要:解题思路:这个属实没啥算法,就是正向按照他说的来注意事项:参考代码:# main height = input().split() h = int(input()) total = 0 f…… 题解列表 2022年02月23日 0 点赞 0 评论 179 浏览 评分:0.0
1098陶陶摘苹果应该有很多种解法 摘要:解题思路:注意事项:也可以试试看用多分支语句参考代码:s=0app=list(map(int,input().split()))hi=int(input())for i in app: if i…… 题解列表 2022年06月28日 0 点赞 0 评论 192 浏览 评分:0.0
python 1098: 陶陶摘苹果 摘要:**没什么好注意的,按题目要求来** ```python a = list(map(int,input().strip().split())) b = int(input().strip()…… 题解列表 2024年09月06日 0 点赞 0 评论 99 浏览 评分:0.0