题解 1098: 陶陶摘苹果

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

就简单比大小,感觉没什么含金量

摘要:解题思路:数据用map转化为迭代类型再转化为列表,然后遍历该列表比大小就行,注意高度相等也算够得到注意事项:不要忽略高度相等参考代码:a=list(map(int,input().split()))b……

python7行解决

摘要:解题思路:注意事项:参考代码:a = [int(i) for i in input().split()]b = int(input())c = 0for i in a:    if b + 30 >=……

编写题解 1098: 陶陶摘苹果

摘要:解题思路:定义count指针计数注意事项:参考代码:h1=list(map(int,input().split())) #苹果到地面高度,打包为整型数组 h2=int(input()) #陶陶把手伸……

陶陶摘苹果(python)

摘要:解题思路:对陶陶的身高加上30再去跟气球高度比较,也可以将气球高度减去30,再与身高比较注意事项:参考代码:a = list(map(int,input().split(" ")))b = int(i……

陶陶摘苹果-题解(Python代码)

摘要:其实笔者并不知道python怎样快速计数,有时使用filter,有时使用sum+判断函数。所以希望各路大佬不吝赐教! ```python l=map(int,input().split()) u……

编写题解 1098: 陶陶摘苹果

摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split(" ")))b = int(input())b  = b+30count = 0for i in range……