結果

問題 No.1617 Palindrome Removal
ユーザー wolgnikwolgnik
提出日時 2021-07-22 21:31:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 213,376 KB
最終ジャッジ日時 2024-07-17 16:37:59
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
179,584 KB
testcase_01 AC 151 ms
188,928 KB
testcase_02 AC 187 ms
203,068 KB
testcase_03 AC 188 ms
201,984 KB
testcase_04 AC 197 ms
213,248 KB
testcase_05 AC 163 ms
185,076 KB
testcase_06 AC 153 ms
196,480 KB
testcase_07 AC 117 ms
156,496 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 185 ms
201,088 KB
testcase_11 AC 164 ms
185,600 KB
testcase_12 AC 196 ms
213,376 KB
testcase_13 AC 197 ms
213,376 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 38 ms
51,968 KB
testcase_18 AC 40 ms
51,712 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 38 ms
51,584 KB
testcase_22 AC 37 ms
52,320 KB
testcase_23 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
S = list(map(lambda x: ord(x) - ord("a"), list(input())[: -1]))

if len(set(S)) == 1:
  if len(S) % 2: print(-1)
  else: print(0)
  exit(0)

if S != S[: : -1]:
  print(len(S))
  exit(0)

if len(S) != 3: print(len(S) - 2)
else: print(-1)
0