結果

問題 No.599 回文かい
ユーザー _____Yuto________Yuto___
提出日時 2017-11-25 00:51:11
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 564 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 57,852 KB
実行使用メモリ 16,084 KB
最終ジャッジ日時 2024-05-05 11:57:13
合計ジャッジ時間 2,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,424 KB
testcase_01 AC 3 ms
7,424 KB
testcase_02 AC 4 ms
7,388 KB
testcase_03 AC 3 ms
7,524 KB
testcase_04 AC 4 ms
7,396 KB
testcase_05 AC 5 ms
7,276 KB
testcase_06 AC 4 ms
7,168 KB
testcase_07 AC 4 ms
7,392 KB
testcase_08 AC 4 ms
7,212 KB
testcase_09 AC 3 ms
7,296 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 5 ms
7,424 KB
testcase_19 AC 4 ms
7,424 KB
testcase_20 AC 3 ms
7,328 KB
evil_0.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string.h>
#include <iostream>
#include <string>
using namespace std;

#define MOD (int)(1e9 + 7)

typedef long long ll;

int memo[1000][1000];

int solve(string s, int k)
{
  ll ret = 1, n = s.length();
  if(memo[k][n] != -1) return memo[k][n];
  for(int i = 1; i <= n / 2; i++){
    if(s.substr(0, i) == s.substr(n - i, i)){
      ret += solve(s.substr(i, n - 2 * i), k + i);
      ret %= MOD;
    }
  }
  return memo[k][n] = ret;
}

int main()
{
  string s;
  cin >> s;

  memset(memo, -1, sizeof(memo));

  cout << solve(s, 1) << endl;

  return 0;
}
0