Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
141891 王一诺 07苹果和虫子 Python3 Wrong Answer 33 MS 3772 KB 108 2025-12-28 18:49:34

Tests(5/10):


Code:

a,b,c=input().split() a,b,c=int(a),int(b),int(c) if c%b!=0: print(a-c//b-1) else: print(a-c//b)


Run Info:

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