結果

問題 No.588 空白と回文
ユーザー ryoissyryoissy
提出日時 2017-11-03 22:30:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 1,560 ms
コンパイル使用メモリ 159,468 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 05:05:52
合計ジャッジ時間 2,331 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007LL
using namespace std;
typedef long long ll;
typedef pair<int,int> P;

string str;
int dp[1001][1001];

int main(void){
	cin >> str;
	int n=str.size();
	int ans=0;
	for(int i=0;i<n;i++){
		int now=0;
		for(int j=0;j<n;j++){
			if(i-j<0 || i+j>=n)break;
			if(j==0)now++;
			else if(str[i-j]==str[i+j])now+=2;
		}
		ans=max(ans,now);
	}
	for(int i=0;i<n;i++){
		int now=0;
		for(int j=0;j<n;j++){
			if(i-j<0 || i+j+1>=n)break;
			if(str[i-j]==str[i+j+1])now+=2;
		}
		ans=max(ans,now);
	}
	printf("%d\n",ans);
	return 0;
}
0