Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
88645 | 空 | 07苹果和虫子 | Python3 | Wrong Answer | 39 MS | 3768 KB | 148 | 2024-08-19 16:49:43 |
n,x,y = input().split() n = int(n) x = int(x) y = int(y) s = n-y//x if y % x != 0: s -= 1 res = int(s) if s > 0: print(res)
------Input------
5 1 12
------Answer-----
0
------Your output-----