就简单比大小,感觉没什么含金量 摘要:解题思路:数据用map转化为迭代类型再转化为列表,然后遍历该列表比大小就行,注意高度相等也算够得到注意事项:不要忽略高度相等参考代码:a=list(map(int,input().split()))b…… 题解列表 2023年08月30日 0 点赞 0 评论 592 浏览 评分:9.9
python7行解决 摘要:解题思路:注意事项:参考代码:a = [int(i) for i in input().split()]b = int(input())c = 0for i in a: if b + 30 >=…… 题解列表 2024年10月20日 0 点赞 0 评论 157 浏览 评分:9.9
编写题解 1098: 陶陶摘苹果 摘要:解题思路:定义count指针计数注意事项:参考代码:h1=list(map(int,input().split())) #苹果到地面高度,打包为整型数组 h2=int(input()) #陶陶把手伸…… 题解列表 2022年10月23日 0 点赞 0 评论 494 浏览 评分:9.6
陶陶摘苹果(python) 摘要:解题思路:对陶陶的身高加上30再去跟气球高度比较,也可以将气球高度减去30,再与身高比较注意事项:参考代码:a = list(map(int,input().split(" ")))b = int(i…… 题解列表 2021年05月30日 0 点赞 0 评论 940 浏览 评分:8.0
陶陶摘苹果-题解(Python代码) 摘要:其实笔者并不知道python怎样快速计数,有时使用filter,有时使用sum+判断函数。所以希望各路大佬不吝赐教! ```python l=map(int,input().split()) u…… 题解列表 2019年08月26日 0 点赞 1 评论 2028 浏览 评分:7.4
1098: 陶陶摘苹果 (这肯定不是中等题的难度 简单题左右) 摘要:解题思路:此题解题思路特别简单,只要求出陶陶站在椅子上是否能够碰到苹果就好了。注意事项:无参考代码:a=input().split() #输入苹果高度a=list(map(int,list(a)))b…… 题解列表 2022年03月16日 0 点赞 0 评论 508 浏览 评分:7.0
编写题解 1098: 陶陶摘苹果 摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split(" ")))b = int(input())b = b+30count = 0for i in range…… 题解列表 2023年02月21日 0 点赞 0 评论 97 浏览 评分:2.0
不是我在装,这道题目真的很简单(捂脸) 摘要:解题思路:这个属实没啥算法,就是正向按照他说的来注意事项:参考代码:# main height = input().split() h = int(input()) total = 0 f…… 题解列表 2022年02月23日 0 点赞 0 评论 179 浏览 评分: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
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