| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144257 | 贺洁 | 07切比雪夫距离 | Python3 | Wrong Answer | 32 MS | 3752 KB | 102 | 2026-01-20 20:44:33 |
a = int(input()) b = int(input()) c = int(input()) d = int(input()) print(max( abs(a-c),abs(b-d)))
------Input------
37 85 25 78
------Answer-----
12
------Your output-----