結果

問題 No.599 回文かい
ユーザー tnakao0123tnakao0123
提出日時 2017-11-25 18:34:14
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,055 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 85,076 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-05-05 12:37:10
合計ジャッジ時間 6,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 28 ms
5,376 KB
testcase_11 AC 18 ms
5,376 KB
testcase_12 AC 49 ms
5,376 KB
testcase_13 AC 22 ms
5,376 KB
testcase_14 AC 16 ms
5,376 KB
testcase_15 AC 83 ms
5,376 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
evil_0.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 599.cc: No.599 回文かい - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 10000;
const int MAX_HN = MAX_N / 2;
const int MOD = 1000000007;

/* typedef */

typedef long long ll;

/* global variables */

ll dp[MAX_HN + 1];

/* subroutines */

bool kaibunkai(string &s, int n, int i, int j) {
  for (int i0 = i, i1 = n - j; i0 < j; i0++, i1++)
    if (s[i0] != s[i1]) return false;
  return true;
}

/* main */

int main() {
  string s;
  cin >> s;
  int n = s.size(), hn = n / 2;
  fill(dp, dp + hn + 1, 1);

  for (int i = hn - 1; i >= 0; i--)
    for (int j = i + 1; j <= hn; j++)
      if (kaibunkai(s, n, i, j)) dp[i] = (dp[i] + dp[j]) % MOD;

  printf("%lld\n", dp[0]);
  return 0;
}
0