結果

問題 No.588 空白と回文
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-14 00:14:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 1,218 bytes
コンパイル時間 2,530 ms
コンパイル使用メモリ 77,956 KB
実行使用メモリ 45,904 KB
最終ジャッジ日時 2024-05-08 09:47:59
合計ジャッジ時間 7,341 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,012 KB
testcase_01 AC 134 ms
41,316 KB
testcase_02 AC 133 ms
41,520 KB
testcase_03 AC 208 ms
45,868 KB
testcase_04 AC 133 ms
41,328 KB
testcase_05 AC 135 ms
41,344 KB
testcase_06 AC 140 ms
41,724 KB
testcase_07 AC 135 ms
41,216 KB
testcase_08 AC 136 ms
41,300 KB
testcase_09 AC 136 ms
41,420 KB
testcase_10 AC 133 ms
41,192 KB
testcase_11 AC 207 ms
45,752 KB
testcase_12 AC 199 ms
45,904 KB
testcase_13 AC 135 ms
41,484 KB
testcase_14 AC 134 ms
41,392 KB
testcase_15 AC 136 ms
41,192 KB
testcase_16 AC 136 ms
41,244 KB
testcase_17 AC 208 ms
45,500 KB
testcase_18 AC 137 ms
41,352 KB
testcase_19 AC 136 ms
41,520 KB
testcase_20 AC 211 ms
45,564 KB
testcase_21 AC 201 ms
45,896 KB
testcase_22 AC 207 ms
45,904 KB
testcase_23 AC 201 ms
45,452 KB
testcase_24 AC 135 ms
41,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		
		//まずは、端以外の文字を中心にして調べる
		int ans1 = 0;
		for (int i=1; i<s.length()-1; i++) {
			StringBuilder sb = new StringBuilder(s);
			StringBuilder L = new StringBuilder(sb.delete(i,sb.length()));
			sb = new StringBuilder(s);
			StringBuilder R = new StringBuilder(sb.delete(0,i+1));
			L.reverse();
			
			int max1 = 0;
			for (int j=0; j<Math.min(L.length(),R.length()); j++) {
				if (L.charAt(j)==R.charAt(j)) {max1++;}
			}
			ans1 = Math.max(ans1,max1);
		}
		ans1 = ans1*2+1;
		
		
		//次、基準が文字の真ん中の場合
		int ans2 = 0;
		for (int i=1; i<s.length(); i++) {
			StringBuilder sb = new StringBuilder(s);
			StringBuilder L = new StringBuilder(sb.delete(i,sb.length()));
			sb = new StringBuilder(s);
			StringBuilder R = new StringBuilder(sb.delete(0,i));
			L.reverse();
			
			int max2 = 0;
			for (int j=0; j<Math.min(L.length(),R.length()); j++) {
				if (L.charAt(j)==R.charAt(j)) {max2++;}
			}
			ans2 = Math.max(ans2,max2);
		}
		ans2 = ans2*2;
		
		System.out.println(Math.max(ans1,ans2));
	}
}
0