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