| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144343 | 桂依然 | 07苹果和虫子 | Python3 | Wrong Answer | 32 MS | 3772 KB | 126 | 2026-01-21 19:40:39 |
n,x,y=map(int,input().split()) a=y//x b=y%x t=n-a if b==0: print(t) elif t>0: print(t-1) else: print("0")
------Input------
5 1 12
------Answer-----
0
------Your output-----
-7