結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 53 ms
10,752 KB
testcase_05 AC 45 ms
10,752 KB
testcase_06 AC 50 ms
10,752 KB
testcase_07 AC 55 ms
10,624 KB
testcase_08 AC 54 ms
10,752 KB
testcase_09 AC 46 ms
10,752 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
evil_0.txt -- -
権限があれば一括ダウンロードができます

ソースコード

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