Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94163 Hope 07苹果和虫子 Python3 Wrong Answer 45 MS 3764 KB 122 2024-10-19 20:17:52

Tests(5/10):


Code:

s = input().split() s = list(map(int, s)) n = s[0] x = s[1] y = s[2] m = y // x if y % x != 0: n-=1 print(n-m)


Run Info:

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