結果

問題 No.588 空白と回文
ユーザー uafr_csuafr_cs
提出日時 2017-11-03 22:33:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,045 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 78,240 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-11-22 15:58:32
合計ジャッジ時間 6,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,144 KB
testcase_01 AC 124 ms
41,092 KB
testcase_02 AC 126 ms
41,480 KB
testcase_03 WA -
testcase_04 AC 122 ms
41,328 KB
testcase_05 AC 124 ms
41,216 KB
testcase_06 AC 123 ms
41,296 KB
testcase_07 AC 122 ms
41,064 KB
testcase_08 AC 125 ms
40,984 KB
testcase_09 AC 124 ms
41,428 KB
testcase_10 AC 124 ms
40,956 KB
testcase_11 WA -
testcase_12 AC 156 ms
41,112 KB
testcase_13 AC 123 ms
41,148 KB
testcase_14 AC 123 ms
41,256 KB
testcase_15 AC 123 ms
40,872 KB
testcase_16 AC 124 ms
41,256 KB
testcase_17 AC 157 ms
41,480 KB
testcase_18 AC 124 ms
41,088 KB
testcase_19 AC 126 ms
41,116 KB
testcase_20 AC 142 ms
41,300 KB
testcase_21 AC 161 ms
41,388 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 126 ms
41,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final char[] input = sc.next().toCharArray();
		
		
		int answer = 0;
		for(int start = 0; start < input.length; start++){
			
			// for_odd
			
			int odd_count = 1;
			for(int diff = 1; diff <= input.length; diff++){
				final int left = start - diff;
				final int right = start + diff;
				
				if(left < 0 || right >= input.length){ break; }
				if(input[left] == input[right]){ odd_count += 2; }
			}
			
			int even_count = 0;
			for(int diff = 1; diff <= input.length; diff++){
				final int left = start - (diff - 1);
				final int right = start + diff;
				
				if(left == 0 || right >= input.length){ break; }
				if(input[left] == input[right]){ even_count += 2; }
			}
			
			answer = Math.max(answer, Math.max(odd_count, even_count));
		}
		
		System.out.println(answer);
	}
}
0