結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー brthyyjpbrthyyjp
提出日時 2020-12-01 15:39:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 69,300 KB
最終ジャッジ日時 2024-09-13 03:01:07
合計ジャッジ時間 820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,088 KB
testcase_01 AC 38 ms
52,832 KB
testcase_02 AC 61 ms
69,300 KB
testcase_03 AC 59 ms
68,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = str(input())
s = [int(i) for i in n]
s.sort(reverse=True)
s = [str(i) for i in s]
print(''.join(s))
0