結果

問題 No.1617 Palindrome Removal
ユーザー Akijin_007Akijin_007
提出日時 2024-06-21 21:07:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 77,008 KB
最終ジャッジ日時 2024-06-21 21:07:48
合計ジャッジ時間 2,986 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
76,956 KB
testcase_01 AC 61 ms
76,688 KB
testcase_02 AC 57 ms
76,464 KB
testcase_03 AC 55 ms
76,804 KB
testcase_04 AC 58 ms
76,808 KB
testcase_05 AC 55 ms
76,484 KB
testcase_06 AC 40 ms
57,776 KB
testcase_07 AC 46 ms
55,064 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 35 ms
52,884 KB
testcase_10 AC 56 ms
76,520 KB
testcase_11 AC 57 ms
76,588 KB
testcase_12 AC 57 ms
76,872 KB
testcase_13 AC 57 ms
77,008 KB
testcase_14 AC 34 ms
52,996 KB
testcase_15 AC 34 ms
53,072 KB
testcase_16 AC 34 ms
52,692 KB
testcase_17 AC 34 ms
51,752 KB
testcase_18 AC 34 ms
52,428 KB
testcase_19 AC 33 ms
52,208 KB
testcase_20 AC 35 ms
53,812 KB
testcase_21 AC 34 ms
52,684 KB
testcase_22 AC 35 ms
52,064 KB
testcase_23 AC 33 ms
52,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

l = len(S)

f = 0
for i in range(l):
    if S[i] != S[l-1-i]:
        f = 1
        break

if f == 1:
    print(l)
else:
    if l == 3:
        print(-1)
    elif S.count(S[0]) == l:
        if l % 2 == 0:
            print(0)
        else:
            print(-1)
    else:
        print(l-2)
0