Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
88645 07苹果和虫子 Python3 Wrong Answer 39 MS 3768 KB 148 2024-08-19 16:49:43

Tests(5/10):


Code:

n,x,y = input().split() n = int(n) x = int(x) y = int(y) s = n-y//x if y % x != 0: s -= 1 res = int(s) if s > 0: print(res)


Run Info:

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