Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144343 桂依然 07苹果和虫子 Python3 Wrong Answer 32 MS 3772 KB 126 2026-01-21 19:40:39

Tests(5/10):


Code:

n,x,y=map(int,input().split()) a=y//x b=y%x t=n-a if b==0: print(t) elif t>0: print(t-1) else: print("0")


Run Info:

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