結果

問題 No.765 ukuku 2
ユーザー htensaihtensai
提出日時 2019-12-30 22:50:22
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,255 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 77,140 KB
実行使用メモリ 88,036 KB
最終ジャッジ日時 2024-11-15 20:35:09
合計ジャッジ時間 26,252 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
45,272 KB
testcase_01 AC 120 ms
84,240 KB
testcase_02 AC 120 ms
46,256 KB
testcase_03 AC 108 ms
83,864 KB
testcase_04 AC 129 ms
46,448 KB
testcase_05 AC 121 ms
41,088 KB
testcase_06 AC 119 ms
41,104 KB
testcase_07 AC 122 ms
40,968 KB
testcase_08 AC 121 ms
41,080 KB
testcase_09 AC 108 ms
40,116 KB
testcase_10 AC 120 ms
40,960 KB
testcase_11 AC 129 ms
41,020 KB
testcase_12 AC 130 ms
41,284 KB
testcase_13 AC 119 ms
41,152 KB
testcase_14 AC 122 ms
41,236 KB
testcase_15 AC 121 ms
40,856 KB
testcase_16 AC 121 ms
41,036 KB
testcase_17 AC 108 ms
39,936 KB
testcase_18 AC 122 ms
41,004 KB
testcase_19 AC 122 ms
41,168 KB
testcase_20 AC 123 ms
41,212 KB
testcase_21 AC 117 ms
40,948 KB
testcase_22 AC 122 ms
40,988 KB
testcase_23 AC 122 ms
41,116 KB
testcase_24 AC 126 ms
41,260 KB
testcase_25 AC 122 ms
41,096 KB
testcase_26 AC 109 ms
40,096 KB
testcase_27 AC 123 ms
41,256 KB
testcase_28 AC 123 ms
41,072 KB
testcase_29 AC 121 ms
41,004 KB
testcase_30 AC 233 ms
43,100 KB
testcase_31 AC 237 ms
43,240 KB
testcase_32 AC 236 ms
42,340 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 365 ms
45,016 KB
testcase_36 AC 338 ms
45,216 KB
testcase_37 TLE -
testcase_38 AC 1,786 ms
45,360 KB
testcase_39 AC 647 ms
45,220 KB
testcase_40 AC 294 ms
43,800 KB
testcase_41 AC 283 ms
43,788 KB
testcase_42 AC 276 ms
43,208 KB
testcase_43 AC 271 ms
43,400 KB
testcase_44 AC 265 ms
43,272 KB
testcase_45 AC 286 ms
43,400 KB
testcase_46 AC 252 ms
42,884 KB
testcase_47 AC 251 ms
42,948 KB
testcase_48 AC 239 ms
43,124 KB
testcase_49 AC 256 ms
88,036 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 length = arr.length;
        int max = 1;
        for (int i = 0; i < length; i++) {
            int left = i;
            int right = i;
            while (left >= 0 && right < length && arr[left] == arr[right]) {
                if (right - left + 1 != length) {
                    max = Math.max(max, right - left + 1);
                }
                left--;
                right++;
            }
            int left2 = left - 1;
            int right2 = right;
            while (left2 >= 0 && right2 < length && arr[left2] == arr[right2]) {
                max = Math.max(max, right2 - left2);
                left2--;
                right2++;
            }
            left2 = left;
            right2 = right + 1;
            while (left2 >= 0 && right2 < length && arr[left2] == arr[right2]) {
                max = Math.max(max, right2 - left2);
                left2--;
                right2++;
            }
            left = i;
            right = i + 1;
            while (left >= 0 && right < length && arr[left] == arr[right]) {
                if (right - left + 1 != length) {
                    max = Math.max(max, right - left + 1);
                }
                left--;
                right++;
            }
            left2 = left - 1;
            right2 = right;
            while (left2 >= 0 && right2 < length && arr[left2] == arr[right2]) {
                max = Math.max(max, right2 - left2);
                left2--;
                right2++;
            }
            left2 = left;
            right2 = right + 1;
            while (left2 >= 0 && right2 < length && arr[left2] == arr[right2]) {
                max = Math.max(max, right2 - left2);
                left2--;
                right2++;
            }
            left = i;
            right = i + 2;
            while (left >= 0 && right < length && arr[left] == arr[right]) {
                max = Math.max(max, right - left);
                left--;
                right++;
            }
           
        }
        System.out.println(max);
    }
    
 }
0