結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー tookunn_1213tookunn_1213
提出日時 2015-08-15 16:40:08
言語 Python2
(2.7.18)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 77 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 8,540 KB
最終ジャッジ日時 2024-07-18 09:42:57
合計ジャッジ時間 642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 9 ms
6,940 KB
testcase_02 AC 79 ms
8,536 KB
testcase_03 AC 69 ms
8,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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