結果

問題 No.273 回文分解
ユーザー kou6839kou6839
提出日時 2015-09-16 13:15:44
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 917 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-12-23 11:56:42
合計ジャッジ時間 7,434 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,252 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 105 ms
39,632 KB
testcase_04 AC 120 ms
40,984 KB
testcase_05 AC 122 ms
41,112 KB
testcase_06 AC 118 ms
40,700 KB
testcase_07 AC 128 ms
41,032 KB
testcase_08 WA -
testcase_09 AC 116 ms
40,936 KB
testcase_10 AC 123 ms
40,852 KB
testcase_11 AC 108 ms
40,040 KB
testcase_12 AC 119 ms
41,236 KB
testcase_13 AC 119 ms
41,044 KB
testcase_14 AC 113 ms
40,220 KB
testcase_15 AC 122 ms
40,916 KB
testcase_16 AC 126 ms
40,948 KB
testcase_17 AC 121 ms
41,164 KB
testcase_18 AC 125 ms
40,900 KB
testcase_19 AC 118 ms
40,844 KB
testcase_20 AC 123 ms
41,208 KB
testcase_21 AC 107 ms
39,800 KB
testcase_22 AC 122 ms
40,828 KB
testcase_23 AC 125 ms
40,948 KB
testcase_24 AC 131 ms
41,136 KB
testcase_25 AC 117 ms
41,008 KB
testcase_26 AC 124 ms
41,068 KB
testcase_27 AC 123 ms
40,980 KB
testcase_28 AC 120 ms
40,676 KB
testcase_29 AC 121 ms
41,288 KB
testcase_30 AC 125 ms
41,180 KB
testcase_31 WA -
testcase_32 AC 121 ms
40,988 KB
testcase_33 AC 118 ms
41,304 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		
		String input = sc.next();
		
		int ans = 1;
		int n = input.length();
		for(int i=0;i<n;i++){
			for(int j=1;;j++){
				int left = i-j;
				int right = i+j;
				if(left<0 || right >=n ){
					break;
				}
				if(input.charAt(left)!=input.charAt(right)){
					break;
				}
				if(left==0 && right==n-1) break;
				ans=Math.max(ans, right-left+1);
			}
			if(i!=n-1){
				if(input.charAt(i)!=input.charAt(i+1)) continue;
				
				for(int j=1;;j++){
					int left = i-j;
					int right = i+j+1;
					if(left<0 || right >=n ){
						break;
					}
					if(input.charAt(left)!=input.charAt(right)){
						break;
					}
					if(left==0 && right==n-1) break;
					ans=Math.max(ans, right-left+1);
				}
			}
		}
		System.out.println(ans);
	}
}
0