Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92856 徐梓涵 07切比雪夫距离 Python3 Wrong Answer 37 MS 3780 KB 213 2024-10-06 15:37:43

Tests(0/10):


Code:

s=input().split() a=s[0] b=s[1] m=s[2] n=s[3] m=int(m) n=int(n) a=int(a) b=int(b) if a-b<0: x=(a-b)*-1 print(x) else: print(x) if m-n<0: y=(m-n)*-1 print(y) else: print(y)


Run Info:

------Input------
37 85 25 78
------Answer-----
12
------Your output-----
48 53