結果

問題 No.273 回文分解
ユーザー tentententen
提出日時 2020-11-18 09:11:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 911 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 75,016 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-23 08:51:41
合計ジャッジ時間 7,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 109 ms
53,072 KB
testcase_02 AC 123 ms
54,124 KB
testcase_03 AC 124 ms
54,008 KB
testcase_04 AC 124 ms
53,872 KB
testcase_05 AC 125 ms
53,724 KB
testcase_06 AC 121 ms
54,040 KB
testcase_07 AC 128 ms
54,128 KB
testcase_08 AC 118 ms
52,852 KB
testcase_09 AC 123 ms
53,732 KB
testcase_10 AC 124 ms
53,824 KB
testcase_11 AC 127 ms
53,972 KB
testcase_12 AC 128 ms
54,272 KB
testcase_13 AC 114 ms
52,812 KB
testcase_14 AC 127 ms
53,972 KB
testcase_15 AC 124 ms
53,956 KB
testcase_16 AC 125 ms
54,148 KB
testcase_17 AC 122 ms
54,268 KB
testcase_18 WA -
testcase_19 AC 124 ms
54,100 KB
testcase_20 AC 123 ms
54,140 KB
testcase_21 AC 111 ms
52,872 KB
testcase_22 AC 125 ms
54,084 KB
testcase_23 WA -
testcase_24 AC 129 ms
53,884 KB
testcase_25 AC 125 ms
53,820 KB
testcase_26 AC 127 ms
53,988 KB
testcase_27 AC 110 ms
52,884 KB
testcase_28 AC 122 ms
54,140 KB
testcase_29 AC 124 ms
54,148 KB
testcase_30 AC 124 ms
54,160 KB
testcase_31 WA -
testcase_32 AC 120 ms
53,948 KB
testcase_33 AC 123 ms
53,772 KB
testcase_34 AC 124 ms
54,228 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();
        if (arr.length == 2) {
            System.out.println(1);
            return;
        }
        int max = 0;
        for (int i = 0; i < arr.length; i++) {
            int left1 = i;
            int right1 = i;
            while (left1 >= 0 && right1 < arr.length && arr[left1] == arr[right1]) {
                max = Math.max(right1 - left1 + 1, max);
                left1--;
                right1++;
            }
            left1 = i;
            right1 = i + 1;
            while (left1 >= 0 && right1 < arr.length && arr[left1] == arr[right1]) {
                max = Math.max(right1 - left1 + 1, max);
                left1--;
                right1++;
            }
        }
        System.out.println(max);
    }
}
0