結果

問題 No.1617 Palindrome Removal
ユーザー harurunharurun
提出日時 2021-07-22 21:44:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 154 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,460 KB
最終ジャッジ日時 2024-07-17 17:05:20
合計ジャッジ時間 5,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
13,360 KB
testcase_01 WA -
testcase_02 AC 273 ms
13,248 KB
testcase_03 AC 272 ms
13,364 KB
testcase_04 AC 285 ms
12,540 KB
testcase_05 AC 236 ms
12,412 KB
testcase_06 AC 333 ms
12,664 KB
testcase_07 AC 209 ms
11,900 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 30 ms
10,368 KB
testcase_10 AC 272 ms
13,460 KB
testcase_11 AC 241 ms
12,024 KB
testcase_12 AC 286 ms
12,540 KB
testcase_13 AC 286 ms
12,536 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 30 ms
10,368 KB
testcase_16 WA -
testcase_17 AC 30 ms
10,368 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 30 ms
10,368 KB
testcase_21 AC 30 ms
10,496 KB
testcase_22 AC 30 ms
10,496 KB
testcase_23 AC 30 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
b=True
for i in range(len(s)):
  if s[i]!=s[-i-1]:
    b=False
if s[0]*len(s)==s:
  print(-1)
elif b:
  print(len(s)-2)
else:
  print(len(s))
  
0