Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
129640 | 曹云翊 | 08比较三个数大小II | Python3 | Accepted | 65 MS | 3772 KB | 144 | 2025-08-31 10:42:05 |
a,b,c = input().split() a = int(a) b = int(b) c = int(c) if a<b and a<c: print(a) elif b<a and b<c: print(b) else: print(c)