Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94147 | 徐盛熠 | 07苹果和虫子 | Python3 | Wrong Answer | 35 MS | 3756 KB | 134 | 2024-10-19 19:42:51 |
c=input().split() n=c[0] n=int(n) x=c[1] y=c[2] x=int(x) y=int(y) if y%x==0 : print(n-y//n) else : print(n-y//n-1)
------Input------
389 1 24
------Answer-----
365
------Your output-----
389