結果
| 問題 |
No.256 桁の数字を入れ替え (2)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
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)]))