Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113223 杨嘉陆 07苹果和虫子 Python3 Wrong Answer 36 MS 3760 KB 103 2025-03-15 14:36:18

Tests(4/10):


Code:

n,x,y=input().split() n=int(n) x=int(x) y=int(y) a=y//x b=y%x s=n-a-b if s<0: s=0 print(s)


Run Info:

------Input------
453 8 30
------Answer-----
449
------Your output-----
444