結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
132,604 KB
testcase_01 AC 150 ms
141,192 KB
testcase_02 AC 144 ms
132,712 KB
testcase_03 AC 144 ms
132,472 KB
testcase_04 AC 162 ms
141,060 KB
testcase_05 AC 136 ms
125,248 KB
testcase_06 AC 136 ms
140,288 KB
testcase_07 AC 111 ms
117,760 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 35 ms
51,456 KB
testcase_10 AC 151 ms
132,512 KB
testcase_11 AC 136 ms
125,236 KB
testcase_12 AC 159 ms
141,056 KB
testcase_13 AC 155 ms
140,812 KB
testcase_14 AC 37 ms
51,712 KB
testcase_15 AC 35 ms
51,840 KB
testcase_16 AC 36 ms
51,712 KB
testcase_17 AC 35 ms
51,456 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
51,456 KB
testcase_21 AC 34 ms
51,840 KB
testcase_22 AC 38 ms
51,456 KB
testcase_23 AC 37 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) & (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