結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー akitsugu777akitsugu777
提出日時 2019-07-04 15:55:56
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 37 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 11,784 KB
実行使用メモリ 11,432 KB
最終ジャッジ日時 2023-10-19 07:38:51
合計ジャッジ時間 848 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
9,952 KB
testcase_01 AC 31 ms
9,952 KB
testcase_02 AC 46 ms
11,432 KB
testcase_03 AC 45 ms
11,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print(''.join(sorted(input())[::-1]))
0