結果

問題 No.588 空白と回文
ユーザー omi_UTomi_UT
提出日時 2017-11-03 22:40:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 349 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-11-22 16:05:44
合計ジャッジ時間 25,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
15,616 KB
testcase_01 AC 31 ms
20,864 KB
testcase_02 AC 31 ms
15,616 KB
testcase_03 TLE -
testcase_04 AC 26 ms
15,616 KB
testcase_05 AC 27 ms
20,992 KB
testcase_06 AC 37 ms
15,744 KB
testcase_07 AC 28 ms
20,864 KB
testcase_08 AC 28 ms
15,616 KB
testcase_09 AC 28 ms
20,864 KB
testcase_10 AC 26 ms
15,744 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 28 ms
17,572 KB
testcase_14 AC 26 ms
15,744 KB
testcase_15 AC 26 ms
10,368 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 TLE -
testcase_18 AC 31 ms
10,496 KB
testcase_19 AC 28 ms
10,368 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 28 ms
20,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(input())
l = len(s)
ret = 0

for ti in range(l):
    for tj in range(ti,l):
        i = ti; j = tj
        tmp = 0
        while (i <= j):
            if s[i] == s[j]:
                if i == j:
                    tmp += 1
                else:
                    tmp += 2
            i += 1; j -= 1
        ret = max(ret,tmp)
print(ret)
0