結果
問題 | No.2766 Delicious Multiply Spice |
ユーザー | hitonanode |
提出日時 | 2024-06-21 00:18:36 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 377 bytes |
コンパイル時間 | 340 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-21 00:18:40 |
合計ジャッジ時間 | 3,310 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 8 |
other | AC * 31 |
ソースコード
from functools import lru_cache @lru_cache(maxsize=None) def req(N: int) -> list[str] | None: if N == 1: return [] N -= 1 for v in (2, 3): if N % v == 0: s = req(N // v) if s is not None: s.append('A' if v == 2 else 'B') return s return None N = int(input()) print("".join(req(N)))