| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144198 | 桂依然 | 07切比雪夫距离 | Python3 | Wrong Answer | 31 MS | 3764 KB | 123 | 2026-01-20 14:57:39 |
a=int(input()) b=int(input()) c=int(input()) d=int(input()) x=abs(c-a) y=abs(b-d) chebyshev=max(x,y) print(chebshev)
------Input------
37 85 25 78
------Answer-----
12
------Your output-----