Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
88642 07苹果和虫子 Python3 Wrong Answer 37 MS 3744 KB 129 2024-08-19 16:40:37

Tests(0/10):


Code:

n = int(input()) x = int(input()) y = int(input()) s = n-y//x if y % x != 0: s -= 1 if s > 0: pirnt(s) else: print(0)


Run Info:

------Input------
389 1 24
------Answer-----
365
------Your output-----