| Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
| 136524 |
6倪葭轩 |
比较三个数大小II |
Python3 |
Wrong Answer |
48 MS |
3716 KB |
37 |
2025-11-15 13:12:21 |
Tests(0/1):
Code:
a=input().split()
a.sort()
print(a)
Run Info:
------Input------
346 423 123
------Answer-----
123 346 423
------Your output-----
['123', '346', '423']