結果

問題 No.464 PPAP
ユーザー H3PO4H3PO4
提出日時 2020-09-07 12:44:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 467 bytes
コンパイル時間 1,709 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 151,424 KB
最終ジャッジ日時 2024-11-29 10:26:32
合計ジャッジ時間 35,325 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,088 KB
testcase_01 AC 39 ms
128,512 KB
testcase_02 AC 40 ms
58,368 KB
testcase_03 AC 40 ms
128,384 KB
testcase_04 AC 61 ms
80,768 KB
testcase_05 AC 64 ms
151,424 KB
testcase_06 AC 59 ms
80,640 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 42 ms
57,856 KB
testcase_16 AC 40 ms
128,384 KB
testcase_17 AC 44 ms
65,152 KB
testcase_18 AC 41 ms
128,768 KB
testcase_19 AC 60 ms
81,024 KB
testcase_20 AC 60 ms
75,452 KB
testcase_21 AC 49 ms
64,896 KB
testcase_22 AC 51 ms
64,384 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_palindrome(s):
    return s == s[::-1]


S = input()

L = len(S)
P, PP, PPA, PPAP = ([0] * L for _ in range(4))
for i in range(L):
    # PPAP
    for j in range(i + 1):
        if is_palindrome(S[j:i + 1]):
            PPAP[i] += PPA[j - 1]

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

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

    # P
    if is_palindrome(S[:i + 1]):
        P[i] += 1

print(PPAP[-1])
0