結果

問題 No.599 回文かい
ユーザー htkbhtkb
提出日時 2019-02-08 20:17:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 469 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-06-28 16:56:52
合計ジャッジ時間 6,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 28 ms
10,368 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 40 ms
10,496 KB
testcase_11 AC 38 ms
10,368 KB
testcase_12 AC 58 ms
10,624 KB
testcase_13 AC 79 ms
10,624 KB
testcase_14 TLE -
testcase_15 AC 303 ms
10,624 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
evil_0.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
S = input()
length = len(S)
mod = 10**9+7
dp = [0]*length


def rec(left_start, right_end):
    count = 1
    for left_end, right_start in zip(range(left_start+1, length//2+1), range(right_end-1, (length+1)//2-1, -1)):
        if S[left_start:left_end] == S[right_start:right_end]:
            count += dp[left_end] or rec(left_end, right_start)

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


print(rec(0, len(S)))
0