結果

問題 No.2766 Delicious Multiply Spice
ユーザー playerplayer
提出日時 2024-06-01 18:20:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 618 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-01 18:20:43
合計ジャッジ時間 2,679 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 RE -
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 30 ms
10,624 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
sys.setrecursionlimit(10**7)

n = int(input())
d = dict()

d[1] = True


def dfs(now):
    if now in d:
        return d[now]
    if (now - 1) % 2 == 0 and dfs((now - 1) // 2):
        d[now] = True
        return True
    if (now - 1) % 3 == 0 and dfs((now - 1) // 3):
        d[now] = True
        return True
    return False


dfs(n)

now = n
ans = []
while now > 1:
    if (now - 1) % 2 == 0 and d[(now - 1) // 2]:
        ans.append("A")
        now = (now - 1) // 2
    else:
        ans.append("B")
        now = (now - 1) // 3

ans.reverse()
print("".join(ans))
0