結果

問題 No.464 PPAP
ユーザー H3PO4H3PO4
提出日時 2020-09-07 13:21:33
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 947 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 744,148 KB
最終ジャッジ日時 2024-11-29 10:30:14
合計ジャッジ時間 18,690 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,216 KB
testcase_01 MLE -
testcase_02 AC 38 ms
59,292 KB
testcase_03 AC 36 ms
305,784 KB
testcase_04 AC 56 ms
73,376 KB
testcase_05 AC 55 ms
435,848 KB
testcase_06 AC 47 ms
68,008 KB
testcase_07 AC 382 ms
140,176 KB
testcase_08 AC 281 ms
115,980 KB
testcase_09 AC 102 ms
76,032 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,003 ms
78,152 KB
testcase_14 TLE -
testcase_15 AC 37 ms
52,620 KB
testcase_16 AC 35 ms
52,432 KB
testcase_17 AC 36 ms
53,400 KB
testcase_18 AC 35 ms
52,336 KB
testcase_19 AC 44 ms
61,016 KB
testcase_20 AC 44 ms
61,872 KB
testcase_21 AC 42 ms
60,112 KB
testcase_22 AC 42 ms
60,752 KB
testcase_23 AC 1,027 ms
76,836 KB
testcase_24 AC 1,282 ms
77,284 KB
testcase_25 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


S = input()

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

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

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

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

    # P
    if (0, i) in palindrome:
        P[i] += 1

print(PPAP[-1])
0