結果
| 問題 | No.1617 Palindrome Removal | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-07-22 23:03:09 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 439 bytes | 
| コンパイル時間 | 261 ms | 
| コンパイル使用メモリ | 82,400 KB | 
| 実行使用メモリ | 79,156 KB | 
| 最終ジャッジ日時 | 2024-07-17 19:39:38 | 
| 合計ジャッジ時間 | 2,419 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 18 WA * 2 | 
ソースコード
import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))
s = input()
n = len(s)
if s==s[::-1]:
    if all((s[0]==s[i] for i in range(n))):
        if n%2==0:
            ans = 0
        else:
            ans = -1
    else:
        ans = n-2
else:
    ans = n
print(ans)
            
            
            
        