結果

問題 No.588 空白と回文
ユーザー htensaihtensai
提出日時 2019-11-14 19:19:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 685 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 41,120 KB
最終ジャッジ日時 2024-09-21 21:31:30
合計ジャッジ時間 6,327 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,852 KB
testcase_01 AC 110 ms
41,048 KB
testcase_02 AC 106 ms
40,560 KB
testcase_03 AC 134 ms
41,064 KB
testcase_04 AC 96 ms
39,620 KB
testcase_05 AC 106 ms
40,112 KB
testcase_06 AC 112 ms
41,088 KB
testcase_07 AC 100 ms
40,260 KB
testcase_08 AC 112 ms
40,752 KB
testcase_09 AC 109 ms
40,564 KB
testcase_10 AC 111 ms
40,804 KB
testcase_11 AC 136 ms
41,060 KB
testcase_12 AC 135 ms
41,016 KB
testcase_13 AC 111 ms
41,040 KB
testcase_14 AC 113 ms
40,784 KB
testcase_15 AC 112 ms
40,588 KB
testcase_16 AC 114 ms
40,720 KB
testcase_17 AC 133 ms
41,120 KB
testcase_18 AC 111 ms
40,856 KB
testcase_19 AC 116 ms
40,680 KB
testcase_20 AC 115 ms
39,852 KB
testcase_21 AC 121 ms
39,940 KB
testcase_22 AC 131 ms
41,068 KB
testcase_23 AC 113 ms
39,972 KB
testcase_24 AC 120 ms
40,788 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 max = 1;
		for (int  i = 0; i < arr.length; i++) {
		    int count1 = 1;
		    for (int j = 1; i - j >= 0 && i + j < arr.length; j++) {
		        if (arr[i - j] == arr[i + j]) {
		            count1 += 2;
		        }
		    }
		    max = Math.max(max, count1);
		    int count2 = 0;
		    for (int j = 0; i - j >= 0 && i + j + 1 < arr.length; j++) {
		        if (arr[i - j] == arr[i + j + 1]) {
		            count2 += 2;
		        }
		    }
		    max = Math.max(max, count2);
		}
	    System.out.println(max);
	}
}
0