結果

問題 No.314 ケンケンパ
ユーザー irumo8202irumo8202
提出日時 2022-01-30 15:03:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 1,000 ms
コード長 700 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 171,664 KB
最終ジャッジ日時 2024-06-11 08:16:58
合計ジャッジ時間 5,334 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
171,380 KB
testcase_01 AC 208 ms
171,648 KB
testcase_02 AC 205 ms
171,396 KB
testcase_03 AC 207 ms
171,520 KB
testcase_04 AC 208 ms
171,468 KB
testcase_05 AC 209 ms
171,520 KB
testcase_06 AC 207 ms
171,452 KB
testcase_07 AC 214 ms
171,376 KB
testcase_08 AC 204 ms
171,460 KB
testcase_09 AC 217 ms
171,456 KB
testcase_10 AC 209 ms
171,520 KB
testcase_11 AC 218 ms
171,352 KB
testcase_12 AC 207 ms
171,444 KB
testcase_13 AC 206 ms
171,344 KB
testcase_14 AC 210 ms
171,664 KB
testcase_15 AC 218 ms
171,416 KB
testcase_16 AC 211 ms
171,520 KB
testcase_17 AC 218 ms
171,392 KB
testcase_18 AC 219 ms
171,392 KB
testcase_19 AC 210 ms
171,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Live as if you were to die tomorrow.
# Learn as if you were to live forever.
MOD = 10 ** 9 + 7


def solve():
    # dp[i][0] means that i-th one ended in "first ken".
    # dp[i][1] means that i-th one ended in "second ken".
    # dp[i][2] means that i-th one ended in "pa".
    dp = [[0, 0, 0] for _ in range(10 ** 6 + 1)]
    dp[1][0] = 1

    for i in range(2, 10 ** 6 + 1):
        dp[i][0] += dp[i - 1][2]
        dp[i][0] %= MOD
        dp[i][1] += dp[i - 1][0]
        dp[i][1] %= MOD
        dp[i][2] += dp[i - 1][0] + dp[i - 1][1]
        dp[i][2] %= MOD
    return dp


def main():
    N = int(input())

    dp = solve()
    print(sum(dp[N]) % MOD)


if __name__ == "__main__":
    main()
0