結果
問題 |
No.256 桁の数字を入れ替え (2)
|
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
n = str(input()) s = [int(i) for i in n] s.sort(reverse=True) s = [str(i) for i in s] print(''.join(s))