結果

問題 No.599 回文かい
ユーザー tnakao0123tnakao0123
提出日時 2017-11-25 18:34:14
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 1,055 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 84,440 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-11-27 10:06:02
合計ジャッジ時間 11,521 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,448 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 26 ms
5,248 KB
testcase_11 AC 16 ms
5,248 KB
testcase_12 AC 45 ms
5,248 KB
testcase_13 AC 20 ms
5,248 KB
testcase_14 AC 14 ms
5,248 KB
testcase_15 AC 75 ms
5,248 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
evil_0.txt AC 41 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

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