結果

問題 No.599 回文かい
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-25 15:31:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,699 ms / 4,000 ms
コード長 687 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-06-28 06:57:58
合計ジャッジ時間 7,583 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 59 ms
64,640 KB
testcase_05 AC 56 ms
62,848 KB
testcase_06 AC 74 ms
69,248 KB
testcase_07 AC 68 ms
66,816 KB
testcase_08 AC 62 ms
65,920 KB
testcase_09 AC 59 ms
63,744 KB
testcase_10 AC 269 ms
77,952 KB
testcase_11 AC 191 ms
77,184 KB
testcase_12 AC 306 ms
78,208 KB
testcase_13 AC 208 ms
76,928 KB
testcase_14 AC 540 ms
80,896 KB
testcase_15 AC 493 ms
81,408 KB
testcase_16 AC 1,484 ms
95,232 KB
testcase_17 AC 1,699 ms
98,560 KB
testcase_18 AC 46 ms
57,600 KB
testcase_19 AC 47 ms
58,240 KB
testcase_20 AC 47 ms
58,112 KB
evil_0.txt AC 351 ms
79,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def z_algorithm(s):
    n = len(s)
    Z = [0]*n
    Z[0] = n
    i = 1
    j = 0
    while i < n:
        while i+j < n and s[j] == s[i+j]:
            j += 1
        Z[i] = j
        if j == 0:
            i += 1
            continue
        k = 1
        while i+k < n and k+Z[k] < j:
            Z[i+k] = Z[k]
            k += 1
        i += k
        j -= k
    return Z

s = str(input())
n = len(s)
mod = 10**9+7
dp = [1]*(n//2+1)
for i in reversed(range(n)):
    if i >= n-i:
        continue
    t = s[i:n-i]
    Z = z_algorithm(t)
    for j in range(1, len(t)//2+1):
        if Z[len(t)-j] == j:
            dp[i] += dp[i+j]
            dp[j] %= mod
#print(dp)
print(dp[0]%mod)
0