Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
104701 | 彭士宝 | 07苹果和虫子 | Python3 | Wrong Answer | 33 MS | 3772 KB | 135 | 2025-01-08 20:12:14 |
n, x, y = map(int, input().split()) if n <= y: remaining_apples = 0 else: remaining_apples = n - y print(remaining_apples)
------Input------
290 4 8
------Answer-----
288
------Your output-----
282