結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | hiro_metal_core |
提出日時 | 2018-01-10 00:22:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 97 bytes |
コンパイル時間 | 771 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 17,152 KB |
最終ジャッジ日時 | 2024-12-23 14:33:52 |
合計ジャッジ時間 | 706 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,624 KB |
testcase_01 | AC | 28 ms
10,496 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
N = list(map(int, input())) N.sort() N.reverse() N = list(map(str, N)) print(int(''.join(N)))