結果

問題 No.1617 Palindrome Removal
ユーザー neterukunneterukun
提出日時 2021-07-22 21:33:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 243 bytes
コンパイル時間 1,297 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 95,644 KB
最終ジャッジ日時 2024-07-17 16:40:40
合計ジャッジ時間 2,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 85 ms
95,564 KB
testcase_02 AC 83 ms
95,144 KB
testcase_03 AC 89 ms
95,160 KB
testcase_04 AC 84 ms
95,164 KB
testcase_05 AC 62 ms
76,404 KB
testcase_06 AC 46 ms
59,716 KB
testcase_07 AC 43 ms
56,964 KB
testcase_08 AC 38 ms
53,972 KB
testcase_09 AC 38 ms
52,356 KB
testcase_10 AC 83 ms
94,856 KB
testcase_11 AC 62 ms
76,628 KB
testcase_12 AC 86 ms
95,392 KB
testcase_13 AC 87 ms
95,576 KB
testcase_14 AC 36 ms
53,348 KB
testcase_15 AC 37 ms
52,680 KB
testcase_16 AC 37 ms
52,084 KB
testcase_17 AC 37 ms
52,944 KB
testcase_18 AC 38 ms
52,204 KB
testcase_19 AC 37 ms
52,352 KB
testcase_20 AC 37 ms
52,448 KB
testcase_21 AC 37 ms
51,940 KB
testcase_22 WA -
testcase_23 AC 39 ms
52,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)


a = s[0 : n // 2]
b = s[(n + 1) // 2 : n][::-1]

if a != b:
    print(n)
elif len(set(list(a))) != 1:
    print(n - 2)
elif n % 2 == 1:
    if n == 3:
        print(-1)
    else:
        print(n - 2)
else:
    print(0)
0