結果

問題 No.314 ケンケンパ
ユーザー tobusakanatobusakana
提出日時 2022-11-26 13:33:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 1,000 ms
コード長 252 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 75,888 KB
最終ジャッジ日時 2024-10-02 16:34:12
合計ジャッジ時間 2,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
75,888 KB
testcase_01 AC 38 ms
51,816 KB
testcase_02 AC 38 ms
52,808 KB
testcase_03 AC 38 ms
52,772 KB
testcase_04 AC 37 ms
52,248 KB
testcase_05 AC 38 ms
52,404 KB
testcase_06 AC 38 ms
53,700 KB
testcase_07 AC 40 ms
52,112 KB
testcase_08 AC 39 ms
53,060 KB
testcase_09 AC 39 ms
52,712 KB
testcase_10 AC 39 ms
52,716 KB
testcase_11 AC 42 ms
58,592 KB
testcase_12 AC 44 ms
60,416 KB
testcase_13 AC 44 ms
59,272 KB
testcase_14 AC 43 ms
61,252 KB
testcase_15 AC 43 ms
61,308 KB
testcase_16 AC 44 ms
62,880 KB
testcase_17 AC 49 ms
73,172 KB
testcase_18 AC 67 ms
75,776 KB
testcase_19 AC 84 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0] * 3
dp[0] = 1

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