結果

問題 No.1617 Palindrome Removal
ユーザー m1k__m1k__
提出日時 2021-07-22 21:50:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-07-17 17:21:48
合計ジャッジ時間 2,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,744 KB
testcase_01 AC 52 ms
63,488 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 65 ms
77,056 KB
testcase_05 AC 65 ms
76,584 KB
testcase_06 AC 65 ms
77,440 KB
testcase_07 AC 59 ms
76,532 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 62 ms
76,952 KB
testcase_11 AC 61 ms
76,672 KB
testcase_12 AC 62 ms
76,928 KB
testcase_13 AC 62 ms
77,312 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 38 ms
52,352 KB
testcase_17 AC 37 ms
51,840 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
51,840 KB
testcase_21 AC 38 ms
52,352 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
cnt = [0]*26
f = 1
lenS = len(S)
for i in range(lenS//2):
    si, sj = S[i], S[lenS-1-i]
    f *= si==sj
    cnt[ord(si)-97] += 1
    cnt[ord(sj)-97] += 1
if f:
    lst = [c for c in cnt if c>0]
    if len(lst)==0:
        print(-1)
    elif len(lst)==1:
        if lenS%2:
            s = S[lenS//2]
            if cnt[ord(s)-97]:
                print(-1)
            else:
                print(0)
        else:
            print(0)
    else:
        print(lenS-2)
else:
    print(lenS)
0