結果

問題 No.599 回文かい
ユーザー _____Yuto________Yuto___
提出日時 2017-11-25 00:35:49
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 374 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 56,276 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-05-05 11:55:38
合計ジャッジ時間 5,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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