結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 WA -
testcase_14 AC 2 ms
6,944 KB
testcase_15 WA -
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
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;

int main() {

	string s;
	cin>>s;

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

return 0;
}
0