結果

問題 No.1617 Palindrome Removal
ユーザー 330Xs330Xs
提出日時 2022-02-03 14:13:47
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 400 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 141,276 KB
最終ジャッジ日時 2024-06-11 09:55:37
合計ジャッジ時間 4,045 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
132,840 KB
testcase_01 AC 168 ms
140,816 KB
testcase_02 AC 159 ms
132,588 KB
testcase_03 AC 158 ms
132,868 KB
testcase_04 AC 167 ms
141,276 KB
testcase_05 AC 145 ms
125,256 KB
testcase_06 AC 148 ms
140,436 KB
testcase_07 AC 117 ms
117,760 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 157 ms
132,516 KB
testcase_11 AC 149 ms
125,360 KB
testcase_12 AC 171 ms
141,064 KB
testcase_13 AC 166 ms
140,816 KB
testcase_14 AC 41 ms
51,968 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 40 ms
52,224 KB
testcase_17 RE -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 40 ms
52,224 KB
testcase_21 AC 40 ms
51,840 KB
testcase_22 AC 39 ms
51,584 KB
testcase_23 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(map(str,input()))
ans = len(s)
elem = set()
flag = True
for i in range(ans//2):
    if(s[i] != s[ans-1-i]):
        flag = False
        break
    else:
        elem.add(s[i])

if(ans % 2 != 0):
    elem.add(s[i+1])
    
if(flag):
    if(len(elem) == 1):
        if(ans % 2 == 0):
            print(0)
        else:
            print(-1)
    else:
        print(ans - 2)
else:
    print(ans)
0