結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー tookunn_1213tookunn_1213
提出日時 2015-08-15 16:40:08
言語 Python2
(2.7.18)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 77 bytes
コンパイル時間 64 ms
コンパイル使用メモリ 6,652 KB
実行使用メモリ 8,112 KB
最終ジャッジ日時 2023-09-25 12:08:28
合計ジャッジ時間 834 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,036 KB
testcase_01 AC 11 ms
5,892 KB
testcase_02 AC 86 ms
8,112 KB
testcase_03 AC 84 ms
8,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = sorted(map(int,list(raw_input())))
print ''.join(str(i) for i in l[::-1])
0