結果

問題 No.314 ケンケンパ
ユーザー noriocnorioc
提出日時 2022-04-07 02:25:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 1,000 ms
コード長 468 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 172,584 KB
最終ジャッジ日時 2024-05-05 20:38:29
合計ジャッジ時間 2,589 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 230 ms
170,816 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 AC 40 ms
52,608 KB
testcase_11 AC 44 ms
58,368 KB
testcase_12 AC 45 ms
60,288 KB
testcase_13 AC 41 ms
59,904 KB
testcase_14 AC 42 ms
61,096 KB
testcase_15 AC 44 ms
61,696 KB
testcase_16 AC 47 ms
63,720 KB
testcase_17 AC 59 ms
74,184 KB
testcase_18 AC 140 ms
123,392 KB
testcase_19 AC 233 ms
172,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# dp[i][j]
# i 個目までみた
# j 個のケンが連続している
dp = [[0] * 3 for i in range(N)]
dp[0][1] = 1 # ケン
for i in range(N-1):
    # パ -> ケン
    dp[i+1][1] += dp[i][0]
    # ケン -> ケン
    dp[i+1][2] += dp[i][1]
    # ケン -> パ
    dp[i+1][0] += dp[i][1]
    # ケンケン -> パ
    dp[i+1][0] += dp[i][2]

    for j in range(3):
        dp[i+1][j] %= MOD

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