結果

問題 No.1617 Palindrome Removal
ユーザー neterukunneterukun
提出日時 2021-07-22 21:28:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 95,988 KB
最終ジャッジ日時 2024-07-17 16:23:33
合計ジャッジ時間 2,699 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
94,964 KB
testcase_01 AC 85 ms
95,988 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 87 ms
95,280 KB
testcase_05 AC 65 ms
76,032 KB
testcase_06 AC 49 ms
59,136 KB
testcase_07 AC 45 ms
56,192 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 72 ms
81,408 KB
testcase_11 AC 67 ms
76,672 KB
testcase_12 AC 92 ms
95,420 KB
testcase_13 AC 90 ms
95,404 KB
testcase_14 AC 39 ms
51,840 KB
testcase_15 AC 38 ms
51,712 KB
testcase_16 AC 39 ms
51,712 KB
testcase_17 AC 39 ms
51,584 KB
testcase_18 AC 38 ms
51,584 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 39 ms
51,712 KB
testcase_21 AC 40 ms
51,456 KB
testcase_22 AC 39 ms
51,820 KB
testcase_23 AC 39 ms
51,584 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 == 0:
    print(0)
else:
    print(-1)

0