結果

問題 No.2147 ハノイの塔のおもちゃ
ユーザー H3PO4H3PO4
提出日時 2022-12-22 21:22:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-04-29 03:51:31
合計ジャッジ時間 1,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 32 ms
10,496 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 34 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N = int(input())
S = input()
MOD = 10 ** 9 + 7

sys.setrecursionlimit(10 ** 5)


def rest(s1: str, s2: str):
    st = set("ABC")
    st.remove(s1)
    st.remove(s2)
    return st.pop()


pow_table = [1] * (N + 1)
for i in range(1, N + 1):
    pow_table[i] = pow_table[i - 1] * 2 % MOD


def f(i: int, s: str):
    if S[i] == s:
        if i:
            return f(i - 1, s)
        else:
            return 0
    else:
        if i:
            res = f(i - 1, rest(S[i], s)) + pow_table[i]
            return res % MOD
        else:
            return 1


print(f(N - 1, "A"))
0