結果

問題 No.464 PPAP
ユーザー H3PO4H3PO4
提出日時 2020-09-07 13:26:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 977 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 272,896 KB
最終ジャッジ日時 2024-11-29 10:31:07
合計ジャッジ時間 14,590 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 45 ms
51,712 KB
testcase_02 AC 47 ms
51,968 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 59 ms
64,000 KB
testcase_05 AC 57 ms
64,000 KB
testcase_06 AC 47 ms
60,416 KB
testcase_07 AC 138 ms
84,132 KB
testcase_08 AC 128 ms
84,096 KB
testcase_09 AC 95 ms
83,712 KB
testcase_10 TLE -
testcase_11 AC 942 ms
202,112 KB
testcase_12 AC 1,767 ms
272,128 KB
testcase_13 AC 1,262 ms
272,768 KB
testcase_14 TLE -
testcase_15 AC 39 ms
52,480 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 40 ms
52,480 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 50 ms
60,288 KB
testcase_20 AC 49 ms
60,032 KB
testcase_21 AC 46 ms
59,264 KB
testcase_22 AC 46 ms
59,136 KB
testcase_23 AC 1,147 ms
272,512 KB
testcase_24 AC 1,239 ms
272,896 KB
testcase_25 AC 1,243 ms
272,720 KB
権限があれば一括ダウンロードができます

ソースコード

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))
table = [[False] * L for _ in range(L)]
for p,q in substring_palindrome(S):
    table[p][q] = True

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