Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94796 | 周楚航 | 求三个数的最大值 | Python3 | Wrong Answer | 40 MS | 3780 KB | 188 | 2024-10-26 13:39:41 |
a = input().split() b=int(a[0]) c=int(a[1]) d=int(a[2]) if (b > c or d): print("max=",b,sep="") elif (c > b or d) : print("max=",c,sep="") else: print("max=",d,sep="")
------Input------
8 5 20
------Answer-----
max=20
------Your output-----
max=8