結果

問題 No.464 PPAP
ユーザー tentententen
提出日時 2020-12-24 12:34:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 1,400 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 77,340 KB
実行使用メモリ 68,712 KB
最終ジャッジ日時 2024-09-21 16:51:45
合計ジャッジ時間 7,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
39,828 KB
testcase_01 AC 100 ms
40,232 KB
testcase_02 AC 103 ms
40,384 KB
testcase_03 AC 112 ms
40,972 KB
testcase_04 AC 114 ms
41,136 KB
testcase_05 AC 113 ms
40,876 KB
testcase_06 AC 97 ms
40,064 KB
testcase_07 AC 137 ms
42,128 KB
testcase_08 AC 118 ms
41,604 KB
testcase_09 AC 108 ms
41,240 KB
testcase_10 AC 378 ms
68,712 KB
testcase_11 AC 246 ms
58,232 KB
testcase_12 AC 365 ms
68,180 KB
testcase_13 AC 315 ms
68,108 KB
testcase_14 AC 370 ms
68,192 KB
testcase_15 AC 114 ms
41,104 KB
testcase_16 AC 110 ms
41,384 KB
testcase_17 AC 96 ms
39,984 KB
testcase_18 AC 98 ms
40,004 KB
testcase_19 AC 112 ms
41,064 KB
testcase_20 AC 105 ms
40,352 KB
testcase_21 AC 97 ms
40,192 KB
testcase_22 AC 110 ms
41,212 KB
testcase_23 AC 317 ms
68,300 KB
testcase_24 AC 357 ms
68,180 KB
testcase_25 AC 354 ms
68,180 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;
        boolean[][] isUse = new boolean[length][length];
        for (int i = 0; i < length - 1; i++) {
            isUse[i][i] = true;
            isUse[i][i + 1] = (arr[i] == arr[i + 1]);
        }
        isUse[length - 1][length - 1] = true;
        for (int i = 2; i < length; i++) {
            for (int j = 0; i + j < length; j++) {
                isUse[j][j + i] = (arr[j] == arr[j + i] && isUse[j + 1][j + i - 1]);
            }
        }
        int[] counts = new int[length];
        for (int i = 0; i < length - 3; i++) {
            if (!isUse[0][i]) {
                continue;
            }
            for (int j = i + 1; j < length - 2; j++) {
                if (isUse[i + 1][j]) {
                    counts[j]++;
                }
            }
        }
        long[] lasts = new long[length];
        lasts[length - 1] = 1;
        for (int i = length - 2; i >= 0; i--) {
            lasts[i] = lasts[i + 1];
            if (isUse[i][length - 1]) {
                lasts[i]++;
            }
        }
        long ans = 0;
        for (int i = 0; i + 2 < length; i++) {
            ans += counts[i] * lasts[i + 2];
        }
        System.out.println(ans);
    }
}
0