結果

問題 No.1617 Palindrome Removal
ユーザー O2MTO2MT
提出日時 2021-07-23 17:30:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 124,952 KB
最終ジャッジ日時 2024-07-18 12:32:56
合計ジャッジ時間 3,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
120,764 KB
testcase_01 AC 142 ms
123,188 KB
testcase_02 AC 143 ms
122,684 KB
testcase_03 AC 140 ms
122,108 KB
testcase_04 AC 144 ms
124,952 KB
testcase_05 AC 124 ms
114,972 KB
testcase_06 AC 147 ms
124,648 KB
testcase_07 AC 108 ms
105,436 KB
testcase_08 AC 42 ms
54,596 KB
testcase_09 AC 42 ms
54,320 KB
testcase_10 AC 147 ms
121,480 KB
testcase_11 AC 126 ms
115,020 KB
testcase_12 AC 154 ms
124,708 KB
testcase_13 AC 159 ms
124,872 KB
testcase_14 AC 38 ms
55,168 KB
testcase_15 AC 39 ms
53,864 KB
testcase_16 AC 40 ms
54,304 KB
testcase_17 AC 39 ms
54,724 KB
testcase_18 AC 39 ms
54,128 KB
testcase_19 AC 41 ms
53,844 KB
testcase_20 AC 40 ms
53,436 KB
testcase_21 AC 43 ms
53,912 KB
testcase_22 AC 43 ms
54,332 KB
testcase_23 AC 38 ms
54,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

S = str(input())
N = len(S)
if N == 1:
  print(-1)
  exit()
ls = list(S)
cs = Counter(ls)
if len(cs) == 1:
  if N%2 == 0:
    print(0)
  else:
    print(-1)
else:
  l = S[:N//2]
  if N%2 == 0:
    r = S[-1:N//2-1:-1]
  else:
    r = S[-1:N//2:-1]
  if l != r:
    print(N)
  else:
    if N == 3:
      print(-1)
    else:
      print(N-2)
0