結果
| 問題 | 
                            No.1617 Palindrome Removal
                             | 
                    
| コンテスト | |
| ユーザー | 
                             lam6er
                         | 
                    
| 提出日時 | 2025-03-31 17:33:32 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 537 bytes | 
| コンパイル時間 | 365 ms | 
| コンパイル使用メモリ | 82,300 KB | 
| 実行使用メモリ | 77,212 KB | 
| 最終ジャッジ日時 | 2025-03-31 17:34:09 | 
| 合計ジャッジ時間 | 2,392 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 18 WA * 2 | 
ソースコード
s = input().strip()
n = len(s)
# Check if the string is a palindrome
is_palindrome = True
for i in range(n // 2):
    if s[i] != s[n - 1 - i]:
        is_palindrome = False
        break
if not is_palindrome:
    print(n)
else:
    # Check if all characters are the same
    all_same = True
    first_char = s[0]
    for c in s:
        if c != first_char:
            all_same = False
            break
    if not all_same:
        print(n - 2)
    else:
        if n % 2 == 0:
            print(0)
        else:
            print(-1)
            
            
            
        
            
lam6er