結果

問題 No.1617 Palindrome Removal
ユーザー ntudantuda
提出日時 2021-09-05 22:29:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 77,652 KB
最終ジャッジ日時 2024-06-02 02:39:18
合計ジャッジ時間 3,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
77,068 KB
testcase_01 AC 90 ms
77,144 KB
testcase_02 AC 91 ms
77,604 KB
testcase_03 AC 90 ms
77,464 KB
testcase_04 AC 94 ms
77,512 KB
testcase_05 AC 86 ms
77,208 KB
testcase_06 AC 109 ms
77,532 KB
testcase_07 AC 82 ms
76,764 KB
testcase_08 AC 37 ms
54,736 KB
testcase_09 AC 34 ms
53,904 KB
testcase_10 AC 99 ms
77,468 KB
testcase_11 AC 92 ms
77,340 KB
testcase_12 AC 101 ms
77,652 KB
testcase_13 AC 99 ms
77,516 KB
testcase_14 AC 35 ms
54,616 KB
testcase_15 AC 35 ms
55,560 KB
testcase_16 AC 35 ms
54,364 KB
testcase_17 AC 37 ms
54,720 KB
testcase_18 AC 35 ms
55,248 KB
testcase_19 AC 36 ms
55,328 KB
testcase_20 AC 36 ms
55,284 KB
testcase_21 AC 36 ms
55,536 KB
testcase_22 AC 37 ms
54,556 KB
testcase_23 AC 37 ms
54,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys

S = input()
D = collections.Counter(S)
ND = len(D)
N = len(S)

if N == 1:
    print(-1)
elif N == 2:
    if ND == 1:
        print(0)
    else:
        print(N)
elif N == 3:
    if S[0] == S[2]:
        print(-1)
    else:
        print(3)
else:
    if ND == 1:
        if N % 2 == 0:
            print(0)
        else:
            print(-1)
    elif S[:N//2] == S[:-(-N//2)-1:-1]:
        print(N-2)
    else:
        print(N)
0