結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | Theta |
提出日時 | 2022-11-02 16:32:44 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 237 bytes |
コンパイル時間 | 209 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-07-17 05:47:22 |
合計ジャッジ時間 | 877 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
from collections import Counter def main(): N = input() N_counter = Counter(N) ans = "" for num in map(str, reversed(range(10))): ans += num*N_counter[num] print(ans) if __name__ == "__main__": main()