結果

問題 No.314 ケンケンパ
ユーザー c_r_5c_r_5
提出日時 2018-09-18 22:03:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 1,000 ms
コード長 262 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 170,880 KB
最終ジャッジ日時 2024-07-18 08:06:20
合計ジャッジ時間 2,780 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
169,260 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 32 ms
51,968 KB
testcase_07 AC 32 ms
52,224 KB
testcase_08 AC 32 ms
52,096 KB
testcase_09 AC 32 ms
52,352 KB
testcase_10 AC 33 ms
53,120 KB
testcase_11 AC 37 ms
58,240 KB
testcase_12 AC 41 ms
60,800 KB
testcase_13 AC 45 ms
63,104 KB
testcase_14 AC 46 ms
68,224 KB
testcase_15 AC 48 ms
71,680 KB
testcase_16 AC 60 ms
78,336 KB
testcase_17 AC 83 ms
85,548 KB
testcase_18 AC 196 ms
121,472 KB
testcase_19 AC 329 ms
170,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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