結果

問題 No.2766 Delicious Multiply Spice
ユーザー playerplayer
提出日時 2024-06-01 18:21:28
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 616 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-06-01 18:21:33
合計ジャッジ時間 3,776 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 RE -
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 41 ms
51,712 KB
testcase_09 AC 42 ms
51,712 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 41 ms
51,840 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 42 ms
51,840 KB
testcase_15 AC 41 ms
52,224 KB
testcase_16 AC 42 ms
51,968 KB
testcase_17 AC 41 ms
51,968 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 41 ms
52,096 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 #

import sys
sys.setrecursionlimit(10**7)

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

if n == 1:
    print()
    exit()

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