結果
問題 | No.599 回文かい |
ユーザー | mkawa2 |
提出日時 | 2020-05-25 23:30:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,480 bytes |
コンパイル時間 | 504 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 266,724 KB |
最終ジャッジ日時 | 2024-10-13 02:21:22 |
合計ジャッジ時間 | 6,413 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,844 KB |
testcase_01 | AC | 36 ms
52,752 KB |
testcase_02 | AC | 37 ms
52,960 KB |
testcase_03 | AC | 36 ms
52,628 KB |
testcase_04 | AC | 45 ms
61,276 KB |
testcase_05 | WA | - |
testcase_06 | AC | 37 ms
52,344 KB |
testcase_07 | AC | 42 ms
59,908 KB |
testcase_08 | AC | 41 ms
58,000 KB |
testcase_09 | WA | - |
testcase_10 | AC | 46 ms
62,028 KB |
testcase_11 | AC | 46 ms
61,832 KB |
testcase_12 | AC | 49 ms
66,296 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | MLE | - |
testcase_18 | AC | 40 ms
58,112 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
evil_0.txt | WA | - |
ソースコード
import sys def SI(): return sys.stdin.readline()[:-1] def LcpByZ(target): # s = input() len_t = len(target) lcp = [-1] * len_t top = 1 # 右の箱において、左の箱の0に対応する点 left = 0 # 左の箱の左端(本当はここでので宣言は不要だけど理解の為) right = 0 # 左の箱の右端 lcp[0] = 0 while top < len_t: # 箱を右に広げていく while top + right < len_t and target[right] == target[top + right]: right += 1 # 右の箱左端のlcpを記録 lcp[top] = right left = 1 # 箱の幅が0だったらtopを動かして、このターン終了 if right == 0: top += 1 continue # lcpを記録しながら箱を左に縮めていく(最初の条件重要) while left + lcp[left] < right and left < right: lcp[top + left] = lcp[left] left += 1 # topを右の箱の左端にして、左の箱を0まで戻す top += left right -= left left = 0 # これも本当は不要 return lcp def main(): s=SI() n=len(s) dp=[0]*(n//2+1) dp[0]=1 for i in range(n//2): pre=dp[i] if pre==0:continue lcp=LcpByZ(s[i:n-i]) m=(n-2*i) for j in range(m//2): if lcp[m-1-j]==j+1: dp[i+j+1]+=pre dp[n//2]+=pre #print(i,lcp,dp) print(dp[-1]) main()