結果

問題 No.314 ケンケンパ
ユーザー noriocnorioc
提出日時 2024-08-23 01:32:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 655 ms / 1,000 ms
コード長 808 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 180,036 KB
最終ジャッジ日時 2024-08-23 01:32:10
合計ジャッジ時間 4,783 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 623 ms
178,696 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 42 ms
53,356 KB
testcase_03 AC 42 ms
53,868 KB
testcase_04 AC 42 ms
54,516 KB
testcase_05 AC 41 ms
53,896 KB
testcase_06 AC 40 ms
53,752 KB
testcase_07 AC 41 ms
53,540 KB
testcase_08 AC 42 ms
53,552 KB
testcase_09 AC 43 ms
53,700 KB
testcase_10 AC 56 ms
63,636 KB
testcase_11 AC 64 ms
66,792 KB
testcase_12 AC 66 ms
67,784 KB
testcase_13 AC 78 ms
69,540 KB
testcase_14 AC 70 ms
72,920 KB
testcase_15 AC 78 ms
77,620 KB
testcase_16 AC 89 ms
78,992 KB
testcase_17 AC 131 ms
87,232 KB
testcase_18 AC 340 ms
126,580 KB
testcase_19 AC 655 ms
180,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from enum import IntEnum, auto


# ステート遷移
class E(IntEnum):
    S = 0        # 開始
    K = auto()   # ケン
    KK = auto()  # ケンケン
    P = auto()   # パ

    def nexts(self):
        match self:
            case E.S: return [E.K]
            case E.K: return [E.KK, E.P]
            case E.KK: return [E.P]
            case E.P: return [E.K]
        assert False

    @staticmethod
    def states():
        for fm in E:
            for to in fm.nexts():
                yield fm, to


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

dp = [[0] * len(E) for _ in range(N+1)]
dp[0][E.S] = 1
for i in range(N):
    for fm in E:
        if dp[i][fm] == 0: continue
        for to in fm.nexts():
            dp[i+1][to] += dp[i][fm]
            dp[i+1][to] %= MOD

ans = sum(dp[N]) % MOD
print(ans)
0