結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-08 14:12:46
言語 Python2
(2.7.18)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 55 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-04-15 13:49:46
合計ジャッジ時間 646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,272 KB
testcase_01 AC 13 ms
6,272 KB
testcase_02 AC 35 ms
7,424 KB
testcase_03 AC 32 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=raw_input()
M=sorted(N)
M.reverse()
print ''.join(M)
0