結果

問題 No.599 回文かい
ユーザー htkbhtkb
提出日時 2019-02-08 21:04:06
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 714 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 281,088 KB
最終ジャッジ日時 2024-06-28 17:34:29
合計ジャッジ時間 3,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 39 ms
57,728 KB
testcase_05 AC 41 ms
59,520 KB
testcase_06 AC 34 ms
51,584 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 40 ms
58,752 KB
testcase_10 AC 41 ms
60,544 KB
testcase_11 AC 40 ms
60,672 KB
testcase_12 AC 47 ms
61,440 KB
testcase_13 AC 46 ms
63,360 KB
testcase_14 AC 366 ms
236,176 KB
testcase_15 AC 56 ms
73,600 KB
testcase_16 AC 384 ms
251,648 KB
testcase_17 MLE -
testcase_18 AC 36 ms
52,352 KB
testcase_19 AC 34 ms
52,608 KB
testcase_20 AC 35 ms
52,608 KB
evil_0.txt AC 562 ms
144,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
S = [ord(c) for c in input()]
#S = [ord("a")]*(10**4)
length = len(S)
mod = 10**9+7

left_kc, right_kc = S[:length//2], S[::-1][:length//2]
p = 1
for i in range(length//2):
    left_kc[i] = (left_kc[i] * p) % mod
    p = p * 10 % mod

dp = [0]*length

def rec(left):
    count = 1
    left_hash, right_hash = 0, 0
    m = 10**left % mod
    for i, (lc, rc) in enumerate(zip(left_kc[left:length//2], right_kc[left:length//2]), start=left):
        left_hash = (left_hash + lc) % mod
        right_hash = (right_hash * 10 + rc*m) % mod
        if left_hash == right_hash:
            count += dp[i+1] or rec(i+1)

    dp[left] = count % mod
    return dp[left]


print(rec(0))
0