Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92759 | 余泽越 | 求三个数的最大值 | Python3 | Wrong Answer | 36 MS | 3768 KB | 189 | 2024-10-06 13:49:00 |
a = input().split() b = int(a[0]) c = int(a[1]) d = int(a[2]) if b > c > d : print("max=",b,sep="") elif d > c > b : print("max=",d,sep="") else: print("max=",c,sep="")
------Input------
8 5 20
------Answer-----
max=20
------Your output-----
max=5