結果

問題 No.314 ケンケンパ
ユーザー tobusakanatobusakana
提出日時 2022-11-26 13:30:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 1,000 ms
コード長 333 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 172,416 KB
最終ジャッジ日時 2024-10-02 16:31:27
合計ジャッジ時間 2,210 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 210 ms
171,136 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 32 ms
51,712 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 33 ms
51,840 KB
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 33 ms
52,352 KB
testcase_09 AC 34 ms
51,840 KB
testcase_10 AC 35 ms
52,736 KB
testcase_11 AC 38 ms
58,240 KB
testcase_12 AC 39 ms
59,264 KB
testcase_13 AC 40 ms
59,776 KB
testcase_14 AC 41 ms
61,184 KB
testcase_15 AC 41 ms
61,312 KB
testcase_16 AC 42 ms
63,872 KB
testcase_17 AC 48 ms
74,112 KB
testcase_18 AC 129 ms
123,136 KB
testcase_19 AC 221 ms
172,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# dp[i][s] = i番目が、0:ケン1回目,1:ケン2回目,パ
dp = [[0] * 3 for i in range(N)]
dp[0][0] = 1

for i in range(1, N):
  dp[i][0] += dp[i - 1][2]
  dp[i][1] += dp[i - 1][0]
  dp[i][2] += dp[i - 1][0] + dp[i - 1][1]
  for j in range(3):
    dp[i][j] %= DIV
    
print(sum(dp[-1]) % DIV)
0