結果

問題 No.1617 Palindrome Removal
ユーザー toyuzukotoyuzuko
提出日時 2021-08-15 00:52:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 76,852 KB
最終ジャッジ日時 2024-10-06 05:09:57
合計ジャッジ時間 3,364 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
76,360 KB
testcase_01 AC 77 ms
76,680 KB
testcase_02 AC 70 ms
76,468 KB
testcase_03 AC 70 ms
76,852 KB
testcase_04 AC 64 ms
76,716 KB
testcase_05 AC 61 ms
76,156 KB
testcase_06 AC 43 ms
58,104 KB
testcase_07 AC 41 ms
56,412 KB
testcase_08 AC 38 ms
52,552 KB
testcase_09 AC 38 ms
52,220 KB
testcase_10 AC 62 ms
76,672 KB
testcase_11 AC 60 ms
76,336 KB
testcase_12 AC 63 ms
76,412 KB
testcase_13 AC 64 ms
76,824 KB
testcase_14 AC 37 ms
52,396 KB
testcase_15 AC 38 ms
52,672 KB
testcase_16 AC 38 ms
53,228 KB
testcase_17 AC 37 ms
53,096 KB
testcase_18 AC 38 ms
52,604 KB
testcase_19 AC 38 ms
52,604 KB
testcase_20 AC 37 ms
52,964 KB
testcase_21 AC 37 ms
52,648 KB
testcase_22 AC 38 ms
52,496 KB
testcase_23 AC 37 ms
52,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
L = len(S)

for i in range(L):
    if S[i] != S[~i]:
        print(L)
        break

else:
    for i in range(L - 1):
        if S[i] != S[i + 1]:
            if L == 3:
                print(-1)
            else:
                print(L - 2)
            break

    else:
        if L % 2 == 0:
            print(0)
        else:
            print(-1)
0