結果

問題 No.588 空白と回文
ユーザー tentententen
提出日時 2020-11-18 10:47:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 54,804 KB
最終ジャッジ日時 2024-07-23 08:54:03
合計ジャッジ時間 6,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,308 KB
testcase_01 AC 128 ms
54,192 KB
testcase_02 AC 127 ms
53,960 KB
testcase_03 AC 159 ms
53,952 KB
testcase_04 AC 131 ms
53,732 KB
testcase_05 AC 139 ms
54,224 KB
testcase_06 AC 133 ms
54,016 KB
testcase_07 AC 130 ms
54,036 KB
testcase_08 AC 132 ms
54,016 KB
testcase_09 AC 129 ms
53,952 KB
testcase_10 AC 130 ms
53,964 KB
testcase_11 AC 160 ms
53,940 KB
testcase_12 AC 162 ms
54,008 KB
testcase_13 AC 138 ms
54,112 KB
testcase_14 AC 132 ms
54,224 KB
testcase_15 AC 138 ms
54,204 KB
testcase_16 AC 131 ms
54,044 KB
testcase_17 AC 151 ms
54,032 KB
testcase_18 AC 138 ms
54,280 KB
testcase_19 AC 128 ms
53,964 KB
testcase_20 AC 155 ms
54,228 KB
testcase_21 AC 161 ms
54,076 KB
testcase_22 AC 154 ms
54,424 KB
testcase_23 AC 164 ms
54,804 KB
testcase_24 AC 128 ms
54,088 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 = 0;
        for (int i = 0; i < arr.length; i++) {
            int left = i;
            int right = i;
            int length = -1;
            while (left >= 0 && right < arr.length) {
                if (arr[left] == arr[right]) {
                    length += 2;
                }
                left--;
                right++;
            }
            max = Math.max(max, length);
            left = i;
            right = i + 1;
            length = 0;
            while (left >= 0 && right < arr.length) {
                if (arr[left] == arr[right]) {
                    length += 2;
                }
                left--;
                right++;
            }
            max = Math.max(max, length);
        }
        System.out.println(max);
    }
}
0