結果

問題 No.314 ケンケンパ
ユーザー turukameturukame
提出日時 2017-01-31 14:56:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 1,000 ms
コード長 526 bytes
コンパイル時間 1,619 ms
コンパイル使用メモリ 165,736 KB
実行使用メモリ 62,080 KB
最終ジャッジ日時 2024-06-06 08:41:44
合計ジャッジ時間 2,713 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
61,312 KB
testcase_01 AC 8 ms
15,136 KB
testcase_02 AC 7 ms
15,164 KB
testcase_03 AC 6 ms
15,104 KB
testcase_04 AC 6 ms
15,184 KB
testcase_05 AC 7 ms
15,104 KB
testcase_06 AC 6 ms
15,200 KB
testcase_07 AC 6 ms
15,232 KB
testcase_08 AC 6 ms
15,200 KB
testcase_09 AC 6 ms
15,232 KB
testcase_10 AC 6 ms
15,132 KB
testcase_11 AC 7 ms
15,232 KB
testcase_12 AC 6 ms
15,232 KB
testcase_13 AC 6 ms
15,232 KB
testcase_14 AC 6 ms
15,280 KB
testcase_15 AC 6 ms
15,736 KB
testcase_16 AC 7 ms
16,384 KB
testcase_17 AC 13 ms
19,968 KB
testcase_18 AC 34 ms
37,620 KB
testcase_19 AC 67 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int N;
const int MAX_N = 1000010;
int dp[MAX_N][3];
const int MOD = 1000000007;

int memo(int pos, int k) {
  if (k >= 3) {
    return 0;
  }
  if (pos >= N) {
    return 1;
  }
  int &res = dp[pos][k];
  if (res >= 0) {
    return res;
  }
  res = 0;
  // ken
  res += memo(pos + 1, k + 1);
  res %= MOD;
  if (k > 0) { // pa
    res += memo(pos + 1, 0);
    res %= MOD;
  }
  return res;
}

int main() {
  cin >> N;
  memset(dp, -1, sizeof(dp));
  cout << memo(0, 0) << endl;
}
0