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