結果

問題 No.599 回文かい
ユーザー _____Yuto________Yuto___
提出日時 2017-11-25 00:35:49
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 374 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 56,180 KB
実行使用メモリ 33,792 KB
最終ジャッジ日時 2024-11-27 08:54:51
合計ジャッジ時間 61,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,320 KB
testcase_01 AC 2 ms
10,016 KB
testcase_02 AC 1 ms
8,448 KB
testcase_03 AC 2 ms
10,016 KB
testcase_04 AC 7 ms
8,704 KB
testcase_05 TLE -
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 1 ms
10,404 KB
testcase_08 AC 1 ms
10,496 KB
testcase_09 TLE -
testcase_10 AC 6 ms
10,496 KB
testcase_11 AC 8 ms
13,632 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
evil_0.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

int solve(string s)
{
  int ret = 1, n = s.length();
  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));
    }
  }
  return ret;
}

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

  cout << solve(s) << endl;

  return 0;
}
0