結果

問題 No.314 ケンケンパ
ユーザー AEnAEn
提出日時 2022-05-13 16:17:31
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 354 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 345,316 KB
最終ジャッジ日時 2024-07-21 15:20:20
合計ジャッジ時間 5,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 961 ms
336,120 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 38 ms
52,480 KB
testcase_11 AC 39 ms
52,608 KB
testcase_12 AC 42 ms
57,984 KB
testcase_13 AC 43 ms
59,648 KB
testcase_14 AC 52 ms
66,944 KB
testcase_15 AC 53 ms
70,528 KB
testcase_16 AC 71 ms
80,872 KB
testcase_17 AC 130 ms
102,144 KB
testcase_18 AC 404 ms
194,908 KB
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mod = 10**9+7

dp = [[[0]*3 for _ in range(2)] for _ in range(N)]
dp[0][0][1] = 1
for i in range(1, N):
    dp[i][0][1] += dp[i-1][1][0]
    dp[i][0][2] += dp[i-1][0][1]
    dp[i][1][0] += dp[i-1][0][2]+dp[i-1][0][1]
    dp[i][0][1] %= mod
    dp[i][0][2] %= mod
    dp[i][1][0] %= mod
print((dp[-1][0][1]+dp[-1][0][2]+dp[-1][1][0])%mod)
0