| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 129193 | 叶航帅 | 07苹果和虫子 | Python3 | Wrong Answer | 56 MS | 3760 KB | 94 | 2025-08-22 15:26:26 |
n,x,y=input().split() n = int(n) x = int(x) y = int(y) n = n - y//x -bool(y%x) print(n)
------Input------
5 1 12
------Answer-----
0
------Your output-----
-7