結果

問題 No.599 回文かい
ユーザー htkbhtkb
提出日時 2019-02-19 20:16:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 4,000 ms
コード長 558 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-10-12 18:17:31
合計ジャッジ時間 2,655 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 34 ms
52,480 KB
testcase_04 AC 37 ms
57,984 KB
testcase_05 AC 40 ms
58,880 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 37 ms
52,608 KB
testcase_09 AC 40 ms
58,880 KB
testcase_10 AC 69 ms
59,904 KB
testcase_11 AC 40 ms
59,520 KB
testcase_12 AC 39 ms
60,160 KB
testcase_13 AC 42 ms
60,672 KB
testcase_14 AC 131 ms
76,288 KB
testcase_15 AC 49 ms
62,464 KB
testcase_16 AC 186 ms
76,544 KB
testcase_17 AC 194 ms
77,312 KB
testcase_18 AC 34 ms
52,352 KB
testcase_19 AC 33 ms
51,968 KB
testcase_20 AC 34 ms
52,736 KB
evil_0.txt AC 495 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

s = list(map(ord, input()))
length = len(s) // 2
s, s_rev = s[:length], s[::-1][:length]
mod = 10**9+7
base = 10
dp = [0]*(length+1)


def rec(i):
    hash_l, hash_r, c_base = 0, 0, 1
    count = 1

    for j in range(i, length):
        hash_l = (hash_l * base + s[j]) % mod
        hash_r = (hash_r + s_rev[j] * c_base) % mod
        c_base = c_base * base % mod
        if hash_l == hash_r:
            count += dp[j+1] or rec(j+1)
            count %= mod

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


print(rec(0))
0