結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー RK PythonRK Python
提出日時 2020-06-03 11:57:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-25 02:47:12
合計ジャッジ時間 837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 61 ms
10,880 KB
testcase_03 AC 58 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
nums = [0]*10
for n in N:
    nums[int(n)] += 1
print("".join([str(i)*nums[i] for i in range(9, -1, -1)]))
0