結果

問題 No.314 ケンケンパ
ユーザー netyo715netyo715
提出日時 2021-06-28 11:45:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 1,000 ms
コード長 222 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 171,640 KB
最終ジャッジ日時 2024-06-25 12:07:43
合計ジャッジ時間 2,405 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
171,068 KB
testcase_01 AC 36 ms
53,348 KB
testcase_02 AC 37 ms
52,516 KB
testcase_03 AC 38 ms
53,136 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
53,440 KB
testcase_06 AC 37 ms
52,768 KB
testcase_07 AC 37 ms
53,360 KB
testcase_08 AC 36 ms
52,276 KB
testcase_09 AC 38 ms
52,284 KB
testcase_10 AC 37 ms
52,684 KB
testcase_11 AC 37 ms
53,872 KB
testcase_12 AC 37 ms
52,440 KB
testcase_13 AC 37 ms
52,532 KB
testcase_14 AC 42 ms
60,716 KB
testcase_15 AC 45 ms
60,032 KB
testcase_16 AC 45 ms
61,568 KB
testcase_17 AC 50 ms
68,608 KB
testcase_18 AC 125 ms
120,976 KB
testcase_19 AC 208 ms
171,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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