結果

問題 No.1617 Palindrome Removal
ユーザー wolgnikwolgnik
提出日時 2021-07-22 21:25:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 214,080 KB
最終ジャッジ日時 2024-07-17 16:16:56
合計ジャッジ時間 3,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
179,524 KB
testcase_01 AC 133 ms
188,704 KB
testcase_02 AC 173 ms
203,048 KB
testcase_03 AC 182 ms
202,312 KB
testcase_04 AC 182 ms
213,616 KB
testcase_05 AC 155 ms
184,836 KB
testcase_06 AC 139 ms
196,848 KB
testcase_07 AC 115 ms
156,984 KB
testcase_08 AC 37 ms
52,152 KB
testcase_09 AC 37 ms
52,180 KB
testcase_10 AC 171 ms
201,188 KB
testcase_11 AC 157 ms
185,208 KB
testcase_12 AC 179 ms
213,672 KB
testcase_13 AC 181 ms
214,080 KB
testcase_14 AC 36 ms
52,232 KB
testcase_15 AC 37 ms
53,236 KB
testcase_16 AC 37 ms
52,976 KB
testcase_17 AC 37 ms
52,476 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 35 ms
52,468 KB
testcase_21 AC 36 ms
53,288 KB
testcase_22 AC 37 ms
52,556 KB
testcase_23 AC 37 ms
52,268 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)

print(len(S) - 2)
0