結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー YU HiroseYU Hirose
提出日時 2024-06-21 11:22:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 557 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 104,812 KB
最終ジャッジ日時 2024-06-21 11:22:19
合計ジャッジ時間 2,620 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,756 KB
testcase_01 AC 38 ms
53,944 KB
testcase_02 AC 557 ms
104,812 KB
testcase_03 AC 526 ms
104,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = list(map(int, list(input())))
co = Counter(n).items()
co = sorted(co, key=lambda x:x[0], reverse=True)
s = ""
for k, v in co:
    for _ in range(v):
        s += str(k)
print(s)
0