結果

問題 No.599 回文かい
ユーザー _____Yuto________Yuto___
提出日時 2017-11-25 00:49:54
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 563 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 57,160 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-05-05 11:57:09
合計ジャッジ時間 3,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,136 KB
testcase_01 AC 7 ms
11,136 KB
testcase_02 AC 6 ms
11,136 KB
testcase_03 AC 6 ms
11,136 KB
testcase_04 AC 7 ms
11,136 KB
testcase_05 AC 7 ms
11,264 KB
testcase_06 AC 6 ms
11,136 KB
testcase_07 AC 6 ms
11,136 KB
testcase_08 AC 7 ms
11,008 KB
testcase_09 AC 7 ms
11,264 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 7 ms
11,136 KB
testcase_19 AC 7 ms
11,264 KB
testcase_20 AC 7 ms
11,264 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;

ll 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