結果

問題 No.314 ケンケンパ
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-23 19:13:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 278 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 82,984 KB
最終ジャッジ日時 2024-07-03 19:24:26
合計ジャッジ時間 2,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
82,612 KB
testcase_01 AC 37 ms
52,772 KB
testcase_02 AC 37 ms
53,784 KB
testcase_03 AC 37 ms
53,036 KB
testcase_04 AC 41 ms
52,628 KB
testcase_05 AC 36 ms
52,212 KB
testcase_06 AC 36 ms
52,652 KB
testcase_07 AC 37 ms
52,652 KB
testcase_08 AC 37 ms
53,336 KB
testcase_09 AC 36 ms
52,580 KB
testcase_10 AC 35 ms
53,548 KB
testcase_11 AC 36 ms
52,336 KB
testcase_12 AC 38 ms
53,944 KB
testcase_13 AC 37 ms
52,288 KB
testcase_14 AC 39 ms
59,804 KB
testcase_15 AC 40 ms
58,864 KB
testcase_16 AC 42 ms
59,884 KB
testcase_17 AC 47 ms
62,516 KB
testcase_18 AC 53 ms
69,816 KB
testcase_19 AC 62 ms
82,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 10 ** 9 + 7
dp = [[0] * (n + 1) for _ in range(3)]
dp[1][0] = 1

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

print((dp[0][n-1] + dp[1][n-1] + dp[2][n-1]) % mod)
0