結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | 👑 rin204 |
提出日時 | 2020-06-25 13:55:04 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 162 bytes |
コンパイル時間 | 76 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-07-03 21:29:21 |
合計ジャッジ時間 | 963 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,752 KB |
testcase_01 | AC | 28 ms
10,624 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
n = input() lst = [0 for _ in range(10)] for num in n: lst[int(num)] += 1 ans = "" for i, num in enumerate(lst): ans += str(i) * num print(int(ans[::-1]))