Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
68827 彭士宝 重组最大数 Python3 Accepted 29 MS 3768 KB 94 2024-03-25 20:57:21

Tests(10/10):


Code:

n = list(map(int,list(input()))) n.sort (reverse = True) for i in n: print(i , end ="")