結果

問題 No.1617 Palindrome Removal
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-07-22 21:44:46
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 259 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 131,216 KB
最終ジャッジ日時 2024-07-17 17:05:15
合計ジャッジ時間 4,069 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
120,952 KB
testcase_01 AC 151 ms
123,352 KB
testcase_02 AC 190 ms
128,844 KB
testcase_03 AC 187 ms
128,436 KB
testcase_04 AC 196 ms
131,136 KB
testcase_05 AC 168 ms
120,152 KB
testcase_06 AC 164 ms
131,132 KB
testcase_07 AC 128 ms
109,748 KB
testcase_08 AC 41 ms
53,248 KB
testcase_09 AC 41 ms
53,376 KB
testcase_10 AC 191 ms
127,436 KB
testcase_11 AC 177 ms
120,576 KB
testcase_12 AC 201 ms
131,100 KB
testcase_13 AC 201 ms
131,216 KB
testcase_14 AC 46 ms
53,632 KB
testcase_15 AC 42 ms
53,888 KB
testcase_16 AC 43 ms
53,888 KB
testcase_17 AC 42 ms
53,248 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 42 ms
53,376 KB
testcase_21 AC 42 ms
53,632 KB
testcase_22 AC 41 ms
53,504 KB
testcase_23 AC 43 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
s = list(input())
c = Counter(s)
if len(c) == 1:
    if len(s) & 1:
        print(-1)
    else:
        print(0)
elif s != s[::-1]:
    print(len(s))
else:
    if len(s) == 3:
        ptint(-1)
    else:
        print(len(s)-2)
0