結果

問題 No.273 回文分解
ユーザー htensaihtensai
提出日時 2019-11-23 15:11:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 946 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 77,060 KB
実行使用メモリ 54,056 KB
最終ジャッジ日時 2024-10-11 06:59:13
合計ジャッジ時間 7,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 122 ms
41,412 KB
testcase_04 AC 124 ms
41,420 KB
testcase_05 AC 124 ms
41,448 KB
testcase_06 AC 126 ms
41,128 KB
testcase_07 AC 112 ms
40,860 KB
testcase_08 AC 121 ms
41,384 KB
testcase_09 AC 129 ms
41,316 KB
testcase_10 AC 126 ms
41,284 KB
testcase_11 AC 113 ms
41,180 KB
testcase_12 AC 126 ms
41,008 KB
testcase_13 AC 126 ms
40,900 KB
testcase_14 AC 121 ms
41,644 KB
testcase_15 AC 123 ms
41,160 KB
testcase_16 AC 128 ms
41,360 KB
testcase_17 AC 128 ms
40,980 KB
testcase_18 AC 127 ms
41,036 KB
testcase_19 AC 126 ms
41,260 KB
testcase_20 AC 127 ms
41,124 KB
testcase_21 AC 125 ms
40,996 KB
testcase_22 AC 125 ms
41,296 KB
testcase_23 AC 131 ms
41,132 KB
testcase_24 AC 126 ms
41,420 KB
testcase_25 AC 111 ms
41,400 KB
testcase_26 AC 126 ms
41,296 KB
testcase_27 AC 126 ms
41,792 KB
testcase_28 AC 109 ms
41,048 KB
testcase_29 AC 120 ms
41,292 KB
testcase_30 AC 125 ms
41,456 KB
testcase_31 AC 109 ms
40,948 KB
testcase_32 AC 129 ms
41,172 KB
testcase_33 AC 127 ms
41,160 KB
testcase_34 AC 129 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		int max1 = 1;
		int max2 = 1;
		for (int  i = 1; i < arr.length - 1; i++) {
		    int count = 0;
		    int idx = 1;
		    while(i - idx >= 0 && i + idx < arr.length && arr[i - idx] == arr[i + idx]) {
		        count++;
		        idx++;
		    }
		    max1 = Math.max(max1, count * 2 + 1);
		    count = 0;
		    idx = 1;
		    while(i - idx + 1 >= 0 && i + idx < arr.length && arr[i - idx + 1] == arr[i + idx]) {
		        count++;
		        idx++;
		    }
		    max2 = Math.max(max2, count * 2);
		}
		if (arr.length % 2 == 0 && max2 == arr.length) {
		    System.out.println(Math.max(max1, max2 - 2));
		} else if (arr.length % 2 == 1 && max1 == arr.length) {
		    System.out.println(Math.max(max1 - 2, max1));
		} else {
		    System.out.println(Math.max(max1, max2));
		}
	}
}
0