結果

問題 No.599 回文かい
ユーザー H3PO4H3PO4
提出日時 2020-10-07 20:53:36
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 809 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 665,628 KB
最終ジャッジ日時 2024-07-20 04:04:50
合計ジャッジ時間 11,049 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 46 ms
60,672 KB
testcase_05 AC 48 ms
62,208 KB
testcase_06 AC 62 ms
70,144 KB
testcase_07 AC 49 ms
62,592 KB
testcase_08 AC 48 ms
62,336 KB
testcase_09 AC 53 ms
62,464 KB
testcase_10 AC 283 ms
72,320 KB
testcase_11 AC 188 ms
72,192 KB
testcase_12 AC 260 ms
75,520 KB
testcase_13 AC 150 ms
73,472 KB
testcase_14 AC 312 ms
70,656 KB
testcase_15 AC 435 ms
78,644 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 38 ms
53,560 KB
testcase_19 AC 38 ms
53,552 KB
testcase_20 AC 39 ms
52,704 KB
evil_0.txt AC 280 ms
71,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
L = len(S)
MOD = 1_000_000_007

rev = lambda x: L - 1 - x
pair2int = lambda i, j: i * L + j

st = set()
for i in range(L // 2):
    # 奇数長
    j = 0
    while i - j >= 0 and i + j < L // 2:
        if S[i - j] == S[rev(i + j)] and S[i + j] == S[rev(i - j)]:
            st.add(pair2int(i - j, i + j))
            j += 1
        else:
            break

    # 偶数長
    j = 0
    while i - j >= 0 and i + j + 1 < L // 2:
        if S[i - j] == S[rev(i + j + 1)] and S[i + j + 1] == S[rev(i - j)]:
            st.add(pair2int(i - j, i + j + 1))
            j += 1
        else:
            break

dp = [0] * (L // 2 + 1)
dp[0] = 1
for i in range(L // 2):
    for j in range(i, L // 2):
        if pair2int(i, j) in st:
            dp[j + 1] = (dp[j + 1] + dp[i]) % MOD
print(sum(dp) % MOD)
0