結果

問題 No.314 ケンケンパ
ユーザー aa
提出日時 2016-07-09 05:38:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 32,512 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-10-13 08:10:34
合計ジャッジ時間 1,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 5 ms
6,656 KB
testcase_02 AC 3 ms
6,656 KB
testcase_03 AC 4 ms
6,528 KB
testcase_04 AC 4 ms
6,528 KB
testcase_05 AC 4 ms
6,656 KB
testcase_06 AC 3 ms
6,656 KB
testcase_07 AC 3 ms
6,656 KB
testcase_08 AC 4 ms
6,528 KB
testcase_09 AC 3 ms
6,528 KB
testcase_10 AC 3 ms
6,656 KB
testcase_11 AC 3 ms
6,656 KB
testcase_12 AC 4 ms
6,656 KB
testcase_13 AC 3 ms
6,656 KB
testcase_14 AC 4 ms
6,912 KB
testcase_15 AC 4 ms
7,144 KB
testcase_16 AC 6 ms
8,192 KB
testcase_17 AC 11 ms
12,800 KB
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>

using namespace std;

const int mod = 1e9+7;
int n;
int dp[111111][2][4];

int solve(int a, int b, int c) {
  if (dp[a][b][c] >= 0) return dp[a][b][c];
  if (a == n) return 1;
  int res = 0;
  if (b == 0) {
    if (c < 2) {
      res = (res+solve(a+1, 0, c+1))%mod;
    }
    if (c > 0) {
      res = (res+solve(a+1, 1, 0))%mod;
    }
  } else {
    res = (res+solve(a+1, 0, c+1))%mod;
  }
  return dp[a][b][c] = res;
}

int main(void) {
  scanf("%d", &n);
  memset(dp, -1, sizeof(dp));
  int res = solve(0, 0, 0);
  printf("%d\n", res);
  return 0;
}










0