結果

問題 No.314 ケンケンパ
ユーザー flippergoflippergo
提出日時 2020-12-28 10:34:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 1,000 ms
コード長 244 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 169,204 KB
最終ジャッジ日時 2024-10-02 10:45:06
合計ジャッジ時間 2,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 273 ms
168,820 KB
testcase_01 AC 34 ms
52,464 KB
testcase_02 AC 34 ms
52,376 KB
testcase_03 AC 36 ms
52,964 KB
testcase_04 AC 33 ms
52,544 KB
testcase_05 AC 35 ms
53,308 KB
testcase_06 AC 32 ms
52,536 KB
testcase_07 AC 34 ms
53,836 KB
testcase_08 AC 33 ms
51,956 KB
testcase_09 AC 32 ms
53,120 KB
testcase_10 AC 32 ms
52,888 KB
testcase_11 AC 36 ms
58,528 KB
testcase_12 AC 36 ms
58,936 KB
testcase_13 AC 39 ms
59,276 KB
testcase_14 AC 43 ms
65,228 KB
testcase_15 AC 44 ms
68,356 KB
testcase_16 AC 53 ms
78,208 KB
testcase_17 AC 70 ms
84,420 KB
testcase_18 AC 159 ms
120,812 KB
testcase_19 AC 278 ms
169,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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