結果

問題 No.314 ケンケンパ
ユーザー noriocnorioc
提出日時 2024-03-20 05:46:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 1,000 ms
コード長 568 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 172,032 KB
最終ジャッジ日時 2024-09-30 05:58:32
合計ジャッジ時間 3,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 520 ms
170,496 KB
testcase_01 AC 44 ms
52,992 KB
testcase_02 AC 43 ms
53,120 KB
testcase_03 AC 43 ms
52,992 KB
testcase_04 AC 43 ms
52,864 KB
testcase_05 AC 43 ms
53,120 KB
testcase_06 AC 43 ms
52,736 KB
testcase_07 AC 44 ms
52,992 KB
testcase_08 AC 44 ms
53,120 KB
testcase_09 AC 45 ms
53,504 KB
testcase_10 AC 55 ms
62,208 KB
testcase_11 AC 63 ms
63,872 KB
testcase_12 AC 63 ms
64,384 KB
testcase_13 AC 62 ms
64,640 KB
testcase_14 AC 69 ms
69,120 KB
testcase_15 AC 71 ms
72,320 KB
testcase_16 AC 81 ms
78,592 KB
testcase_17 AC 122 ms
86,656 KB
testcase_18 AC 289 ms
122,624 KB
testcase_19 AC 490 ms
172,032 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


MOD = 10 ** 9 + 7
INF = 1 << 60
N = int(input())

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

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