結果

問題 No.2147 ハノイの塔のおもちゃ
ユーザー H3PO4H3PO4
提出日時 2022-12-22 21:22:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-18 03:28:43
合計ジャッジ時間 1,409 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

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