编写题解 2772: 苹果和虫子-while循环
摘要:解题思路:注意事项:参考代码:n,x,y=map(int,input().split())while y<(n*x): if y%x==0: print(n-(y//x)) ……
2772: 苹果和虫子(Python)
摘要:解题思路:注意事项:参考代码:from decimal import *
Pi=3.14159
tmp = input()
n,x,y = tmp.split()
n = int(n)
x ……
2772: 苹果和虫子
摘要:解题思路:注意事项:参考代码:import mathn, x, y = map(int,input().strip().split())print(math.floor(n - y / x)) ……