Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92080 | 潘允晨 | 08比较三个数大小II | Python3 | Accepted | 40 MS | 3784 KB | 205 | 2024-09-28 11:21:03 |
a,b,c=input().split() a=int(a) b=int(b) c=int(c) if a>b>c: print(c) elif a>c>b: print(b) elif b>a>c: print(c) elif b>c>a: print(a) elif c>b>a: print(a) else: print(b)