Online Judge
Toggle navigation
C++题库系统 OJ
首页
问题列表
状态
排行榜
登录
首页
状态
68827
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 ="")