| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141264 | 胡海峰老师 | 求三个数的最大值 | Python3 | Accepted | 31 MS | 3760 KB | 198 | 2025-12-21 17:09:44 |
a,b,c = input().split() a,b,c = int(a),int(b),int(c) if a>b>c or a>c>b: print("max={}".format(a)) elif b>a>c or b>c>a: print("max={}".format(b)) else: print("max={}".format(c))