結果

問題 No.314 ケンケンパ
ユーザー rlangevinrlangevin
提出日時 2023-01-07 14:00:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 256 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 75,444 KB
最終ジャッジ日時 2024-05-08 10:30:00
合計ジャッジ時間 2,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
75,376 KB
testcase_01 AC 40 ms
52,824 KB
testcase_02 AC 35 ms
53,420 KB
testcase_03 AC 36 ms
52,080 KB
testcase_04 AC 34 ms
52,460 KB
testcase_05 AC 36 ms
53,300 KB
testcase_06 AC 35 ms
53,312 KB
testcase_07 AC 35 ms
52,380 KB
testcase_08 AC 34 ms
52,860 KB
testcase_09 AC 36 ms
51,936 KB
testcase_10 AC 34 ms
53,076 KB
testcase_11 AC 36 ms
53,016 KB
testcase_12 AC 35 ms
53,560 KB
testcase_13 AC 36 ms
53,752 KB
testcase_14 AC 42 ms
59,404 KB
testcase_15 AC 42 ms
60,732 KB
testcase_16 AC 40 ms
62,056 KB
testcase_17 AC 43 ms
67,808 KB
testcase_18 AC 53 ms
75,444 KB
testcase_19 AC 60 ms
75,416 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