Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92816 | 余泽越 | 07苹果和虫子 | Python3 | Wrong Answer | 41 MS | 3752 KB | 142 | 2024-10-06 14:59:27 |
a = input().split() b = int(a[0]) c = int(a[1]) d = int(a[2]) if d%c != 0: e = d//c+1 print(b-e) else: f = d/c-b print(f)
------Input------
389 1 24
------Answer-----
365
------Your output-----
-365.0