結果

問題 No.273 回文分解
ユーザー kou6839kou6839
提出日時 2015-09-16 13:17:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 917 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 77,268 KB
実行使用メモリ 41,840 KB
最終ジャッジ日時 2024-06-25 13:29:34
合計ジャッジ時間 7,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
39,936 KB
testcase_01 AC 118 ms
41,488 KB
testcase_02 AC 121 ms
41,260 KB
testcase_03 AC 123 ms
41,536 KB
testcase_04 AC 119 ms
41,772 KB
testcase_05 AC 119 ms
41,204 KB
testcase_06 AC 120 ms
41,768 KB
testcase_07 AC 122 ms
41,740 KB
testcase_08 AC 117 ms
41,216 KB
testcase_09 AC 115 ms
40,748 KB
testcase_10 AC 107 ms
40,012 KB
testcase_11 AC 106 ms
40,100 KB
testcase_12 AC 111 ms
40,696 KB
testcase_13 AC 120 ms
41,304 KB
testcase_14 AC 123 ms
41,344 KB
testcase_15 AC 114 ms
41,364 KB
testcase_16 AC 122 ms
41,456 KB
testcase_17 AC 121 ms
41,348 KB
testcase_18 AC 119 ms
41,328 KB
testcase_19 AC 122 ms
41,840 KB
testcase_20 AC 108 ms
40,496 KB
testcase_21 AC 121 ms
41,676 KB
testcase_22 AC 121 ms
41,304 KB
testcase_23 AC 112 ms
40,184 KB
testcase_24 AC 122 ms
41,232 KB
testcase_25 AC 120 ms
41,212 KB
testcase_26 AC 123 ms
41,556 KB
testcase_27 AC 123 ms
41,588 KB
testcase_28 AC 122 ms
41,364 KB
testcase_29 AC 118 ms
41,428 KB
testcase_30 AC 110 ms
40,356 KB
testcase_31 AC 120 ms
41,540 KB
testcase_32 AC 108 ms
39,980 KB
testcase_33 AC 108 ms
40,200 KB
testcase_34 AC 120 ms
41,488 KB
権限があれば一括ダウンロードができます

ソースコード

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=0;;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