Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
128184 | 曹云翊 | 08比较三个数大小II | Python3 | Accepted | 52 MS | 3756 KB | 147 | 2025-08-08 19:46:26 |
a,b,c = input().split() a = int(a) b = int(b) c = int(c) if a<b: d = a else: d = b if d<c: e = d else: e = c print(e)