- 1010 苹果和虫子
- 2019-07-10 00:47:57 @
该怎么写才能通过= =
import math
n=int(input('apple :'))
x=int(input('per hour be eaten by bug :'))
y=int(input('hours later :'))
print(n-math.ceil(y/x))
3 条评论
-
王文俊 LV 4 @ 2020-11-10 14:36:05
什么也不要往里输入
还有分类是否整除 -
2020-11-10 14:24:48@
n = int(input())
x = int(input())
y = int(input())print(n-int(y/x))
-
2019-07-12 11:38:24@
import math
n = int(input())
x = int(input())
y = int(input())print(n-math.ceil(y/x))
#可能就是废话不要太多……
- 1
信息
- 难度
- 5
- 分类
- (无)
- 标签
- (无)
- 递交数
- 3030
- 已通过
- 953
- 通过率
- 31%
- 被复制
- 1
- 上传者