結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー tassei903tassei903
提出日時 2023-02-04 10:53:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 272,328 KB
最終ジャッジ日時 2024-07-03 09:29:04
合計ジャッジ時間 17,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 333 ms
189,372 KB
testcase_04 AC 119 ms
102,464 KB
testcase_05 AC 100 ms
89,928 KB
testcase_06 AC 539 ms
272,076 KB
testcase_07 AC 475 ms
251,020 KB
testcase_08 AC 470 ms
234,508 KB
testcase_09 AC 647 ms
242,904 KB
testcase_10 AC 701 ms
272,076 KB
testcase_11 AC 423 ms
234,244 KB
testcase_12 AC 560 ms
269,932 KB
testcase_13 AC 518 ms
272,176 KB
testcase_14 AC 621 ms
271,996 KB
testcase_15 AC 615 ms
256,272 KB
testcase_16 AC 231 ms
150,120 KB
testcase_17 AC 358 ms
174,388 KB
testcase_18 AC 563 ms
272,204 KB
testcase_19 AC 646 ms
272,084 KB
testcase_20 AC 594 ms
272,176 KB
testcase_21 AC 514 ms
272,328 KB
testcase_22 AC 630 ms
272,008 KB
testcase_23 AC 607 ms
272,260 KB
testcase_24 AC 717 ms
272,152 KB
testcase_25 AC 648 ms
272,128 KB
testcase_26 AC 518 ms
272,088 KB
testcase_27 AC 468 ms
202,556 KB
testcase_28 AC 642 ms
272,064 KB
testcase_29 AC 523 ms
271,892 KB
testcase_30 AC 34 ms
52,364 KB
testcase_31 AC 34 ms
52,352 KB
testcase_32 AC 673 ms
222,720 KB
testcase_33 AC 593 ms
272,268 KB
testcase_34 AC 33 ms
52,048 KB
testcase_35 AC 660 ms
222,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
s = input()
n = len(s)

dp = [[0 for j in range(n+1)]for i in range(n)]

for i in range(n):
    dp[i][i+1] = 1
    dp[i][i] = 1

for d in range(2,n+1):
    for i in range(n-d+1):
        j = i + d
        if s[i] == s[j-1]:
            dp[i][j] = dp[i+1][j-1]

ans = [0] * (n+1)
ans[0] = 10**9

for i in range(n):
    for j in range(i+1, n+1):
        if dp[i][j]:
            ans[j] = max(ans[j], min(ans[i], j-i))

print(ans[n])
0