| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144299 | 陈怡笑 | 07苹果和虫子 | Python3 | Wrong Answer | 31 MS | 3768 KB | 109 | 2026-01-21 13:56:45 |
n,x,y=map(int,input().split()) z=y//x if y%x==0: m=n-z print(m) else: m=n-z-1 print(m)
------Input------
5 1 12
------Answer-----
0
------Your output-----
-7