結果

問題 No.588 空白と回文
ユーザー newlife171128newlife171128
提出日時 2017-12-24 21:51:30
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,039 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 68,176 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 23:51:47
合計ジャッジ時間 5,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,940 KB
testcase_02 WA -
testcase_03 AC 261 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 1 ms
6,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
6,940 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <sstream>
#include <cmath>
#include <stack>

using namespace std;
string s;

int func(int start,int end){

	vector<char> p;
/*
	for(int i=start; i<=end; i++){
		p.push_back(s[i]);
	}*/
	int count=0;

	for(int i=start; i<=end;i++){
		if(s[i] == s[end-i]){
			count++;
		}
	}
	return count;

}

int main() {

	cin >> s;

	int left_side = 0;
	int right_side = 0;
	int ans = 1;
	bool judge=false;
/*	cout << s.length() << endl;*/
	for (int k = 0; k < s.length() - 3; k++) {
		for (int i = 1; i < s.length() - 1-k; i++) {
			judge =false;
			left_side = i;
			right_side = i+k;
			int tmp=0;
			if(i+k==1){
				tmp =1;
			}else {
				tmp = func(left_side,right_side);
			}

			while (left_side != 0 && right_side != s.length() - 1) {
				if (s[--left_side] == s[++right_side]) {
					tmp += 2;
					judge =true;
				}
			}
			if(judge)
			ans = max(ans, tmp);
		}
	}
	if (ans == 1) {
		cout << ans << endl;
	} else {
		cout << ans << endl;
	}

	return 0;
}

0