結果

問題 No.314 ケンケンパ
ユーザー noriocnorioc
提出日時 2024-08-23 01:29:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 747 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 180,460 KB
最終ジャッジ日時 2024-08-23 01:30:04
合計ジャッジ時間 6,592 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 42 ms
53,600 KB
testcase_02 AC 43 ms
54,328 KB
testcase_03 AC 44 ms
54,548 KB
testcase_04 AC 44 ms
54,384 KB
testcase_05 AC 44 ms
54,456 KB
testcase_06 AC 43 ms
53,484 KB
testcase_07 AC 43 ms
53,472 KB
testcase_08 AC 43 ms
53,856 KB
testcase_09 AC 42 ms
53,904 KB
testcase_10 AC 63 ms
66,328 KB
testcase_11 AC 66 ms
69,220 KB
testcase_12 AC 71 ms
71,260 KB
testcase_13 AC 74 ms
72,856 KB
testcase_14 AC 87 ms
77,168 KB
testcase_15 AC 88 ms
77,868 KB
testcase_16 AC 120 ms
79,292 KB
testcase_17 AC 186 ms
87,420 KB
testcase_18 AC 579 ms
126,792 KB
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

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, to in E.states():
        dp[i+1][to] += dp[i][fm]
        dp[i+1][to] %= MOD

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