結果

問題 No.314 ケンケンパ
ユーザー yansi819yansi819
提出日時 2024-05-21 08:30:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 1,000 ms
コード長 134 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 131,408 KB
最終ジャッジ日時 2024-05-21 08:30:43
合計ジャッジ時間 2,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
131,408 KB
testcase_01 AC 35 ms
53,300 KB
testcase_02 AC 36 ms
53,288 KB
testcase_03 AC 35 ms
52,612 KB
testcase_04 AC 35 ms
52,560 KB
testcase_05 AC 35 ms
52,268 KB
testcase_06 AC 36 ms
52,136 KB
testcase_07 AC 37 ms
52,344 KB
testcase_08 AC 37 ms
51,824 KB
testcase_09 AC 36 ms
52,204 KB
testcase_10 AC 36 ms
52,992 KB
testcase_11 AC 39 ms
52,124 KB
testcase_12 AC 35 ms
52,492 KB
testcase_13 AC 38 ms
52,548 KB
testcase_14 AC 40 ms
58,892 KB
testcase_15 AC 41 ms
58,752 KB
testcase_16 AC 40 ms
60,508 KB
testcase_17 AC 46 ms
66,100 KB
testcase_18 AC 66 ms
94,484 KB
testcase_19 AC 83 ms
130,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
MOD = 10 ** 9 + 7
dp = [1, 2, 2]
for i in range(3, N):
    dp.append((dp[i - 2] + dp[i - 3]) % MOD)
print(dp[N - 1])
0