結果

問題 No.464 PPAP
ユーザー maspymaspy
提出日時 2023-05-28 04:31:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 858 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 68,324 KB
最終ジャッジ日時 2024-06-07 23:41:37
合計ジャッジ時間 18,202 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 480 ms
44,380 KB
testcase_01 AC 470 ms
44,120 KB
testcase_02 AC 472 ms
44,236 KB
testcase_03 AC 468 ms
43,988 KB
testcase_04 AC 468 ms
44,212 KB
testcase_05 AC 468 ms
43,988 KB
testcase_06 AC 476 ms
44,116 KB
testcase_07 AC 483 ms
43,992 KB
testcase_08 AC 488 ms
43,988 KB
testcase_09 AC 486 ms
44,020 KB
testcase_10 AC 836 ms
68,156 KB
testcase_11 AC 718 ms
59,240 KB
testcase_12 AC 823 ms
68,324 KB
testcase_13 AC 857 ms
68,124 KB
testcase_14 AC 820 ms
67,788 KB
testcase_15 AC 534 ms
43,856 KB
testcase_16 AC 537 ms
44,372 KB
testcase_17 AC 547 ms
43,856 KB
testcase_18 AC 469 ms
43,984 KB
testcase_19 AC 467 ms
44,252 KB
testcase_20 AC 476 ms
44,116 KB
testcase_21 AC 471 ms
44,032 KB
testcase_22 AC 475 ms
43,984 KB
testcase_23 AC 858 ms
68,212 KB
testcase_24 AC 836 ms
67,928 KB
testcase_25 AC 822 ms
67,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

S = np.array(list(read().rstrip()), np.int8)
N = len(S)

is_palind = np.zeros((N + 1, N + 1), np.bool_)
is_palind[0] = 1
is_palind[1, :-1] = 1
for n in range(2, N + 1):
    is_palind[n, : N + 1 - n] = is_palind[n - 2, 1: N + 2 - n]
    is_palind[n, : N + 1 - n] &= (S[:N + 1 - n] == S[n - 1:N])

P = np.zeros(N, np.int64)
P += is_palind[1:, 0] * 1

PP = np.zeros_like(P)
for i, x in enumerate(P):
    PP[i + 1:] += x * is_palind[1: N - i, i + 1]

PPA = np.zeros_like(PP)
PPA[1:] = np.cumsum(PP[:-1])

PPAP = np.zeros_like(P)
for i, x in enumerate(PPA):
    PPAP[i + 1:] += x * is_palind[1: N - i, i + 1]

print(PPAP[-1])
0