結果

問題 No.1617 Palindrome Removal
ユーザー hir355
提出日時 2021-07-22 21:27:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 96,624 KB
最終ジャッジ日時 2024-07-17 16:20:49
合計ジャッジ時間 2,828 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 18 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
if len(set(s)) == 1:
    if len(s) % 2 == 1:
        print(-1)
    else:
        print(0)
else:
    if s != s[::-1]:
        print(len(s))
    else:
        print(len(s) - 2)
0