Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
88652 07苹果和虫子 Python3 Wrong Answer 38 MS 3776 KB 103 2024-08-19 16:58:30

Tests(5/10):


Code:

n,x,y=input().split() n,x,y=int(n),int(x),int(y) res=n-y//x if y%x==0 else n-y//x-1 print(res)


Run Info:

------Input------
5 1 12
------Answer-----
0
------Your output-----
-7