結果

問題 No.314 ケンケンパ
ユーザー noriocnorioc
提出日時 2024-08-22 20:04:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 878 ms / 1,000 ms
コード長 688 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 172,436 KB
最終ジャッジ日時 2024-08-22 20:04:51
合計ジャッジ時間 6,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 878 ms
170,968 KB
testcase_01 AC 39 ms
53,268 KB
testcase_02 AC 39 ms
54,304 KB
testcase_03 AC 39 ms
54,804 KB
testcase_04 AC 39 ms
53,892 KB
testcase_05 AC 38 ms
53,488 KB
testcase_06 AC 44 ms
54,576 KB
testcase_07 AC 38 ms
54,528 KB
testcase_08 AC 38 ms
53,604 KB
testcase_09 AC 39 ms
53,664 KB
testcase_10 AC 53 ms
65,760 KB
testcase_11 AC 59 ms
68,588 KB
testcase_12 AC 64 ms
69,952 KB
testcase_13 AC 64 ms
71,340 KB
testcase_14 AC 75 ms
77,036 KB
testcase_15 AC 78 ms
77,324 KB
testcase_16 AC 95 ms
79,260 KB
testcase_17 AC 157 ms
87,016 KB
testcase_18 AC 502 ms
122,936 KB
testcase_19 AC 877 ms
172,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from enum import IntEnum, auto


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

    def nexts(self):
        match self:
            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)]
dp[0][E.K] = 1
for i in range(N-1):
    for fm, to in E.states():
        dp[i+1][to] += dp[i][fm]
        dp[i+1][to] %= MOD

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