結果

問題 No.599 回文かい
ユーザー koyumeishikoyumeishi
提出日時 2017-11-07 16:59:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 849 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-11-24 04:49:39
合計ジャッジ時間 46,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,128 KB
testcase_01 AC 31 ms
17,828 KB
testcase_02 AC 31 ms
16,000 KB
testcase_03 AC 31 ms
17,696 KB
testcase_04 AC 52 ms
16,128 KB
testcase_05 AC 43 ms
21,888 KB
testcase_06 AC 48 ms
21,504 KB
testcase_07 AC 55 ms
21,760 KB
testcase_08 AC 49 ms
15,872 KB
testcase_09 AC 43 ms
21,632 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
evil_0.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import array

def zAlgo(s) :
  n = len(s)
  # z = [0 for i in range(n)]
  z = array.array('i', [0 for i in range(n)])
  z[0] = n
  [l,r] = [0,0]
  for i in range(1,n) :
    if i > r :
      [l,r] = [i,i]
      while r<n and s[r] == s[r-l] :
        r += 1

      z[i] = r-l
    else :
      k = i-l
      if z[k] < r-i+1 :
        z[i] = z[k]
      else :
        l = i
        while r<n and s[r] == s[r-l] :
          r += 1

        z[i] = r-l

    r -= 1

  return z

mod = 10**9 + 7

s = input()

n = len(s)

# dp = [0 for i in range(n)]
dp = array.array('i', [0 for i in range(n)])
dp[0] = 1

ans = 0
for i in range(n//2) :
  m = n-i*2
  if m <= 0 :
    break

  t = s[i:i+m]
  z = zAlgo(t)
  for j in range(1, m//2+1) :
    if z[m-j] == j :
      dp[i+j] = (dp[i+j] + dp[i]) % mod


for i in range(n) :
  ans = (ans + dp[i]) % mod

print(ans)
0