結果

問題 No.314 ケンケンパ
ユーザー noriocnorioc
提出日時 2022-04-07 02:24:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 468 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 199,496 KB
最終ジャッジ日時 2024-11-27 21:40:57
合計ジャッジ時間 8,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 26 ms
15,872 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 34 ms
10,624 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 39 ms
11,776 KB
testcase_15 AC 46 ms
12,672 KB
testcase_16 AC 75 ms
15,744 KB
testcase_17 AC 229 ms
30,464 KB
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

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