Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93541 | 胡玄善 | 求三个数的最大值 | Python3 | Accepted | 33 MS | 3776 KB | 189 | 2024-10-17 19:57:37 |
s=input().split() a=int(s[0]) b=int(s[1]) c=int(s[2]) if a>b>c or a>c>b: print("max=",a,sep="") elif b>a>c or b>c>a: print("max=",b,sep="") else: print("max=",c,sep="")