結果

問題 No.599 回文かい
ユーザー H3PO4H3PO4
提出日時 2020-10-06 08:53:17
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 799 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 272,224 KB
最終ジャッジ日時 2024-07-20 00:36:07
合計ジャッジ時間 8,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,712 KB
testcase_01 AC 44 ms
52,608 KB
testcase_02 AC 45 ms
52,224 KB
testcase_03 AC 44 ms
51,840 KB
testcase_04 AC 53 ms
60,288 KB
testcase_05 AC 54 ms
61,184 KB
testcase_06 AC 65 ms
66,432 KB
testcase_07 AC 54 ms
61,568 KB
testcase_08 AC 47 ms
61,056 KB
testcase_09 AC 48 ms
61,824 KB
testcase_10 AC 334 ms
160,896 KB
testcase_11 AC 231 ms
130,560 KB
testcase_12 AC 358 ms
180,908 KB
testcase_13 AC 241 ms
136,448 KB
testcase_14 AC 497 ms
230,020 KB
testcase_15 AC 556 ms
253,312 KB
testcase_16 AC 1,604 ms
247,580 KB
testcase_17 MLE -
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 37 ms
52,096 KB
testcase_20 AC 36 ms
52,736 KB
evil_0.txt AC 415 ms
207,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

rev = lambda x: L - 1 - x

table = [[False] * (L // 2) for _ in range(L // 2)]
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)]:
            table[i - j][i + j] = True
            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)]:
            table[i - j][i + j + 1] = True
            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 table[i][j]:
            dp[j + 1] = (dp[j + 1] + dp[i]) % MOD
print(sum(dp) % MOD)
0