結果

問題 No.1617 Palindrome Removal
ユーザー ntudantuda
提出日時 2021-09-05 22:27:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 78,028 KB
最終ジャッジ日時 2024-06-02 02:38:33
合計ジャッジ時間 3,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
77,084 KB
testcase_01 AC 91 ms
77,020 KB
testcase_02 AC 96 ms
77,488 KB
testcase_03 AC 101 ms
77,480 KB
testcase_04 AC 96 ms
77,780 KB
testcase_05 AC 92 ms
77,060 KB
testcase_06 AC 103 ms
78,028 KB
testcase_07 AC 81 ms
76,772 KB
testcase_08 AC 36 ms
53,768 KB
testcase_09 AC 36 ms
54,268 KB
testcase_10 AC 96 ms
77,332 KB
testcase_11 AC 93 ms
77,196 KB
testcase_12 AC 100 ms
77,648 KB
testcase_13 AC 106 ms
77,520 KB
testcase_14 AC 37 ms
53,496 KB
testcase_15 AC 35 ms
54,444 KB
testcase_16 AC 36 ms
54,652 KB
testcase_17 AC 34 ms
53,564 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
54,896 KB
testcase_21 AC 37 ms
53,788 KB
testcase_22 AC 37 ms
54,512 KB
testcase_23 AC 35 ms
54,068 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 ND == 1:
        print(-1)
    elif 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