| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144320 | 毛梦瑶 | 07苹果和虫子 | Python3 | Wrong Answer | 32 MS | 3760 KB | 92 | 2026-01-21 19:15:08 |
n,x,y=map(int,input().split()) m=y/x if int(m)!=m: m+=1 left=n-int(m) print(left)
------Input------
5 1 12
------Answer-----
0
------Your output-----
-7