Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92776 | 余泽越 | 比较三个数大小II | Python3 | Accepted | 40 MS | 3764 KB | 291 | 2024-10-06 14:22:58 |
a = input().split() b = int(a[0]) c = int(a[1]) d = int(a[2]) x = b n = b if c > x: x = c elif d > x: x = d if c < n: n = c elif d < n: n = d if b > n and b < x: print(n,b,x) elif c > n and c < x: print(n,c,x) elif d > n and d < x: print(n,d,x)