| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141697 | 胡海峰老师 | 07苹果和虫子 | Python3 | Wrong Answer | 31 MS | 3748 KB | 128 | 2025-12-28 14:37:56 |
#y里面有多少个完整的x #y//x n,x,y=map(int,input().split()) if n>=(y//x): t=n-(y//x) else: t=0 print(t)
------Input------
459 2 1
------Answer-----
458
------Your output-----
459