結果

問題 No.1617 Palindrome Removal
ユーザー tassei903tassei903
提出日時 2021-07-22 22:13:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 76,248 KB
最終ジャッジ日時 2024-07-17 18:11:56
合計ジャッジ時間 2,644 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
73,044 KB
testcase_01 AC 74 ms
73,988 KB
testcase_02 AC 70 ms
73,692 KB
testcase_03 AC 70 ms
74,480 KB
testcase_04 AC 75 ms
74,468 KB
testcase_05 AC 67 ms
72,216 KB
testcase_06 AC 72 ms
74,500 KB
testcase_07 AC 60 ms
69,744 KB
testcase_08 AC 38 ms
52,200 KB
testcase_09 AC 38 ms
52,152 KB
testcase_10 AC 71 ms
74,156 KB
testcase_11 AC 66 ms
71,896 KB
testcase_12 AC 73 ms
75,168 KB
testcase_13 AC 72 ms
76,248 KB
testcase_14 AC 37 ms
52,888 KB
testcase_15 AC 38 ms
52,768 KB
testcase_16 AC 37 ms
52,596 KB
testcase_17 AC 38 ms
53,124 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
52,004 KB
testcase_21 AC 38 ms
52,128 KB
testcase_22 AC 38 ms
52,700 KB
testcase_23 AC 38 ms
52,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
if len(s)==1:
    print(-1)
else:
    n = len(s)
    a = s[:(n+1)//2]
    b = s[::-1][:(n+1)//2]
    if sum([s[0]==s[i]for i in range(n)])==n and a==b:
        if n%2==0:
            print(0)
        else:
            print(-1)
    elif a==b:
        print(n-2)
    else:
        print(n)

        
0