結果

問題 No.1617 Palindrome Removal
ユーザー rlangevinrlangevin
提出日時 2023-01-09 15:05:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 106,440 KB
最終ジャッジ日時 2024-05-09 23:55:37
合計ジャッジ時間 2,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
105,364 KB
testcase_01 AC 100 ms
105,720 KB
testcase_02 AC 98 ms
105,416 KB
testcase_03 AC 99 ms
105,072 KB
testcase_04 AC 100 ms
106,176 KB
testcase_05 AC 93 ms
103,384 KB
testcase_06 AC 78 ms
102,088 KB
testcase_07 AC 71 ms
96,968 KB
testcase_08 AC 36 ms
53,144 KB
testcase_09 AC 36 ms
52,492 KB
testcase_10 AC 103 ms
105,328 KB
testcase_11 AC 97 ms
104,056 KB
testcase_12 AC 105 ms
106,172 KB
testcase_13 AC 109 ms
106,440 KB
testcase_14 AC 37 ms
53,412 KB
testcase_15 AC 37 ms
52,336 KB
testcase_16 AC 36 ms
52,416 KB
testcase_17 AC 39 ms
52,332 KB
testcase_18 AC 36 ms
52,488 KB
testcase_19 AC 37 ms
52,604 KB
testcase_20 AC 37 ms
52,872 KB
testcase_21 AC 37 ms
52,460 KB
testcase_22 AC 35 ms
53,304 KB
testcase_23 AC 36 ms
53,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
N = len(S)
left, right = 0, N - 1
while left < right:
    if S[left] != S[right]:
        print(N)
        exit()
    left += 1
    right -= 1
if len(set(S)) == 1:
    if len(S) % 2:
        print(-1)
    else:
        print(0)
else:
    if len(S) == 3 and S[0] == S[-1]:
        print(-1)
    else:
        print(N - 2)
0