結果

問題 No.314 ケンケンパ
ユーザー rlangevinrlangevin
提出日時 2023-01-07 14:00:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 1,000 ms
コード長 256 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,976 KB
実行使用メモリ 75,568 KB
最終ジャッジ日時 2024-12-14 13:42:23
合計ジャッジ時間 1,996 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
75,568 KB
testcase_01 AC 36 ms
52,092 KB
testcase_02 AC 38 ms
52,336 KB
testcase_03 AC 35 ms
52,704 KB
testcase_04 AC 37 ms
53,712 KB
testcase_05 AC 36 ms
52,724 KB
testcase_06 AC 36 ms
52,124 KB
testcase_07 AC 37 ms
52,556 KB
testcase_08 AC 38 ms
52,644 KB
testcase_09 AC 35 ms
51,880 KB
testcase_10 AC 38 ms
53,752 KB
testcase_11 AC 37 ms
52,384 KB
testcase_12 AC 38 ms
52,288 KB
testcase_13 AC 37 ms
52,752 KB
testcase_14 AC 39 ms
59,636 KB
testcase_15 AC 39 ms
60,264 KB
testcase_16 AC 42 ms
62,192 KB
testcase_17 AC 47 ms
68,420 KB
testcase_18 AC 52 ms
75,484 KB
testcase_19 AC 61 ms
75,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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