結果

問題 No.1617 Palindrome Removal
ユーザー googol_S0googol_S0
提出日時 2021-07-22 21:53:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 96,916 KB
最終ジャッジ日時 2024-07-17 17:28:56
合計ジャッジ時間 2,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
96,260 KB
testcase_01 AC 98 ms
96,796 KB
testcase_02 AC 103 ms
96,792 KB
testcase_03 AC 97 ms
96,184 KB
testcase_04 AC 100 ms
96,684 KB
testcase_05 AC 94 ms
94,720 KB
testcase_06 AC 53 ms
59,516 KB
testcase_07 AC 46 ms
56,192 KB
testcase_08 AC 37 ms
52,324 KB
testcase_09 AC 38 ms
52,796 KB
testcase_10 AC 101 ms
96,012 KB
testcase_11 AC 97 ms
95,056 KB
testcase_12 AC 110 ms
96,652 KB
testcase_13 AC 104 ms
96,916 KB
testcase_14 AC 39 ms
51,940 KB
testcase_15 AC 38 ms
52,440 KB
testcase_16 AC 38 ms
53,016 KB
testcase_17 AC 38 ms
51,948 KB
testcase_18 AC 38 ms
53,356 KB
testcase_19 AC 38 ms
52,156 KB
testcase_20 AC 37 ms
51,808 KB
testcase_21 AC 38 ms
52,196 KB
testcase_22 AC 39 ms
52,116 KB
testcase_23 AC 38 ms
53,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
N=len(S)
if S!=S[::-1]:
  print(N)
  exit()
if len(set(S))==1:
  print(-(N&1))
  exit()
if N==3:
  print(-1)
  exit()
print(N-2)
0