結果

問題 No.958 たぷりすたべる (回文)
ユーザー pekempeypekempey
提出日時 2019-12-21 02:07:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 631 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 101,848 KB
最終ジャッジ日時 2024-07-18 07:19:30
合計ジャッジ時間 13,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 AC 40 ms
53,760 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 37 ms
52,736 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 35 ms
52,480 KB
testcase_11 AC 39 ms
52,608 KB
testcase_12 AC 34 ms
52,224 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 AC 34 ms
52,736 KB
testcase_15 AC 34 ms
52,352 KB
testcase_16 AC 34 ms
52,456 KB
testcase_17 AC 35 ms
52,224 KB
testcase_18 AC 34 ms
52,320 KB
testcase_19 AC 40 ms
53,632 KB
testcase_20 AC 40 ms
53,632 KB
testcase_21 AC 37 ms
53,504 KB
testcase_22 AC 41 ms
53,888 KB
testcase_23 AC 46 ms
53,760 KB
testcase_24 AC 45 ms
54,272 KB
testcase_25 AC 38 ms
53,292 KB
testcase_26 AC 37 ms
53,760 KB
testcase_27 AC 265 ms
76,312 KB
testcase_28 AC 238 ms
76,032 KB
testcase_29 AC 267 ms
76,032 KB
testcase_30 AC 250 ms
76,160 KB
testcase_31 AC 266 ms
76,160 KB
testcase_32 AC 249 ms
76,392 KB
testcase_33 AC 243 ms
76,084 KB
testcase_34 AC 250 ms
76,544 KB
testcase_35 AC 250 ms
76,288 KB
testcase_36 AC 244 ms
76,168 KB
testcase_37 AC 259 ms
76,160 KB
testcase_38 AC 223 ms
76,416 KB
testcase_39 AC 274 ms
76,288 KB
testcase_40 AC 270 ms
76,288 KB
testcase_41 AC 246 ms
76,160 KB
testcase_42 AC 240 ms
76,416 KB
testcase_43 AC 213 ms
76,288 KB
testcase_44 AC 225 ms
76,416 KB
testcase_45 AC 227 ms
76,160 KB
testcase_46 AC 240 ms
76,416 KB
testcase_47 AC 451 ms
82,536 KB
testcase_48 AC 480 ms
85,976 KB
testcase_49 AC 492 ms
86,516 KB
testcase_50 AC 465 ms
85,472 KB
testcase_51 AC 570 ms
101,704 KB
testcase_52 AC 631 ms
101,708 KB
testcase_53 AC 517 ms
89,272 KB
testcase_54 AC 542 ms
101,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, Q = map(int, input().split())

def manacher(s):
  n = len(s)
  rad = [None] * n
  i = 0
  k = 0
  while i < n:
    while i-k-1>=0 and i+k+1<n and s[i-k-1]==s[i+k+1]:
      k += 1
    rad[i] = k
    j = 1
    k -= 1
    while i-j >= 0 and rad[i-j] < k:
      rad[i+j] = rad[i-j]
      j += 1
      k -= 1
    i += j
  return rad

S = input()
rad = manacher(S + S + S + S + S)

for _ in range(Q):
  A = int(input()) - 1
  if rad[A % N + 2*N] >= 2*N:
    print(min(A, N*K-1-A)*2+1)
  else:
    print(min(rad[A % N + 2*N], A, N*K-1-A)*2+1)
0