結果

問題 No.599 回文かい
ユーザー 山本信二山本信二
提出日時 2022-04-07 08:56:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 746 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-11-27 22:53:54
合計ジャッジ時間 40,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
21,248 KB
testcase_01 AC 25 ms
15,872 KB
testcase_02 AC 25 ms
15,872 KB
testcase_03 AC 26 ms
21,248 KB
testcase_04 AC 34 ms
15,744 KB
testcase_05 AC 31 ms
21,760 KB
testcase_06 AC 34 ms
15,872 KB
testcase_07 AC 36 ms
21,504 KB
testcase_08 AC 34 ms
10,496 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 TLE -
testcase_11 AC 2,491 ms
10,624 KB
testcase_12 TLE -
testcase_13 AC 2,761 ms
10,624 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 28 ms
10,496 KB
testcase_20 AC 27 ms
10,496 KB
evil_0.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

S = input()
N = len(S)


def z_algorithm(S):
    """compute the lengths of common prefix. """
    N = len(S)
    arr = [0] * N
    arr[0] = N
    i, j = 1, 0
    while i < N:
        while i + j < N and S[j] == S[i + j]:
            j += 1
        arr[i] = j
        if not j:
            i += 1
            continue
        k = 1
        while i + k < N and k + arr[k] < j:
            arr[i + k] = arr[k]
            k += 1
        i += k
        j -= k
    return arr


M = N // 2
dp = [1] * (M + 1)
for n in range(M, -1, -1):
    T = S[n: N - n]
    if not T:
        continue
    Z = z_algorithm(T)
    for i in range(1, len(T) // 2 + 1):
        if Z[-i] == i:
            dp[n] += dp[n + i]
    dp[n] %= MOD
print(dp[0])
0