結果

問題 No.314 ケンケンパ
ユーザー ryusukeryusuke
提出日時 2023-07-09 18:35:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 1,000 ms
コード長 461 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 172,568 KB
最終ジャッジ日時 2024-07-23 15:54:51
合計ジャッジ時間 2,514 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 253 ms
171,020 KB
testcase_01 AC 38 ms
52,420 KB
testcase_02 AC 38 ms
52,124 KB
testcase_03 AC 38 ms
52,404 KB
testcase_04 AC 38 ms
52,184 KB
testcase_05 AC 38 ms
52,936 KB
testcase_06 AC 38 ms
52,528 KB
testcase_07 AC 38 ms
53,260 KB
testcase_08 AC 38 ms
52,832 KB
testcase_09 AC 38 ms
52,944 KB
testcase_10 AC 37 ms
53,224 KB
testcase_11 AC 42 ms
58,332 KB
testcase_12 AC 43 ms
59,720 KB
testcase_13 AC 44 ms
60,588 KB
testcase_14 AC 45 ms
60,860 KB
testcase_15 AC 45 ms
61,252 KB
testcase_16 AC 47 ms
64,840 KB
testcase_17 AC 73 ms
86,120 KB
testcase_18 AC 153 ms
123,284 KB
testcase_19 AC 264 ms
172,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# verification-helper: PROBLEM https://yukicoder.me/problems/no/314

def main() -> None:
    n = int(input())
    
    dp = [[0] * 3 for _ in range(n + 1)]
    dp[1][1] = 1
    mod = 10**9 + 7

    for i in range(2, n + 1):
        dp[i][0] = dp[i - 1][1] + dp[i - 1][2]
        dp[i][1] = dp[i - 1][0]
        dp[i][2] = dp[i - 1][1]
        for j in range(3):
            dp[i][j] %= mod
    
    print(sum(dp[n]) % mod)

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