Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94145 徐盛熠 07苹果和虫子 Python3 Wrong Answer 41 MS 3768 KB 134 2024-10-19 19:40:43

Tests(5/10):


Code:

c=input().split() a=c[0] a=int(a) b=c[1] x=c[2] x=int(x) b=int(b) if x%b==0 : print(a-x//b) else : print(a-x//b-1)


Run Info:

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