| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141261 | 王一诺 | 求三个数的最大值 | Python3 | Accepted | 31 MS | 3764 KB | 275 | 2025-12-21 16:54:31 |
a,b,c=input().split() a=int(a) b=int(b) c=int(c) if a>b: if a>c: print("max={}".format(a)) else: print("max={}".format(c)) else: if b>c: print("max={}".format(b)) else: print("max={}".format(c))