結果

問題 No.464 PPAP
ユーザー H3PO4H3PO4
提出日時 2020-09-07 13:29:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,837 ms / 2,000 ms
コード長 988 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 272,792 KB
最終ジャッジ日時 2024-11-29 10:31:23
合計ジャッジ時間 12,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,432 KB
testcase_01 AC 33 ms
52,896 KB
testcase_02 AC 34 ms
52,884 KB
testcase_03 AC 38 ms
52,792 KB
testcase_04 AC 49 ms
64,208 KB
testcase_05 AC 48 ms
63,040 KB
testcase_06 AC 41 ms
60,224 KB
testcase_07 AC 96 ms
83,984 KB
testcase_08 AC 96 ms
84,088 KB
testcase_09 AC 85 ms
83,864 KB
testcase_10 AC 1,837 ms
272,200 KB
testcase_11 AC 782 ms
201,560 KB
testcase_12 AC 1,571 ms
272,192 KB
testcase_13 AC 1,065 ms
272,792 KB
testcase_14 AC 1,774 ms
272,204 KB
testcase_15 AC 33 ms
52,440 KB
testcase_16 AC 34 ms
52,768 KB
testcase_17 AC 36 ms
53,656 KB
testcase_18 AC 34 ms
52,544 KB
testcase_19 AC 40 ms
61,760 KB
testcase_20 AC 41 ms
60,780 KB
testcase_21 AC 41 ms
59,392 KB
testcase_22 AC 41 ms
60,800 KB
testcase_23 AC 1,041 ms
272,416 KB
testcase_24 AC 1,059 ms
272,272 KB
testcase_25 AC 1,168 ms
272,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def substring_palindrome(S):
    L = len(S)
    table = [[False] * L for _ in range(L)]
    for i in range(L):
        # 奇数長
        j = 0
        while 0 <= i - j and i + j < L:
            if S[i - j] == S[i + j]:
                table[i - j][i + j] = True
                j += 1
            else:
                break
        # 偶数長
        j = 0
        while 0 <= i - j and i + j + 1 < L:
            if S[i - j] == S[i + j + 1]:
                table[i - j][i + j + 1] = True
                j += 1
            else:
                break

    return table


S = input()

L = len(S)
P, PP, PPA, PPAP = ([0] * L for _ in range(4))
table = substring_palindrome(S)

for i in range(L):
    # PPAP
    for j in range(i + 1):
        if table[j][i]:
            PPAP[i] += PPA[j - 1]

    # PPA
    PPA[i] += sum(PP[:i])

    # PP
    for j in range(i + 1):
        if table[j][i]:
            PP[i] += P[j - 1]

    # P
    if table[0][i]:
        P[i] += 1

print(PPAP[-1])
0