結果

問題 No.314 ケンケンパ
ユーザー noriocnorioc
提出日時 2022-04-07 02:25:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 1,000 ms
コード長 468 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 172,416 KB
最終ジャッジ日時 2024-11-27 21:41:00
合計ジャッジ時間 2,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
171,136 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 36 ms
52,076 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 36 ms
51,584 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 AC 41 ms
58,452 KB
testcase_12 AC 43 ms
59,648 KB
testcase_13 AC 41 ms
59,776 KB
testcase_14 AC 43 ms
61,056 KB
testcase_15 AC 45 ms
61,440 KB
testcase_16 AC 46 ms
63,616 KB
testcase_17 AC 52 ms
74,112 KB
testcase_18 AC 138 ms
123,008 KB
testcase_19 AC 234 ms
172,416 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