結果

問題 No.1617 Palindrome Removal
ユーザー KudeKude
提出日時 2021-07-22 21:26:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 117 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 96,684 KB
最終ジャッジ日時 2024-07-17 16:17:21
合計ジャッジ時間 3,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
96,108 KB
testcase_01 AC 116 ms
96,640 KB
testcase_02 AC 117 ms
96,288 KB
testcase_03 AC 116 ms
96,128 KB
testcase_04 AC 118 ms
96,684 KB
testcase_05 AC 108 ms
94,932 KB
testcase_06 AC 60 ms
58,880 KB
testcase_07 AC 52 ms
55,936 KB
testcase_08 AC 42 ms
51,456 KB
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 120 ms
96,128 KB
testcase_11 AC 114 ms
94,880 KB
testcase_12 AC 125 ms
96,552 KB
testcase_13 AC 125 ms
96,544 KB
testcase_14 AC 42 ms
51,840 KB
testcase_15 AC 43 ms
51,840 KB
testcase_16 AC 43 ms
51,584 KB
testcase_17 AC 46 ms
51,840 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 43 ms
51,840 KB
testcase_21 AC 46 ms
51,584 KB
testcase_22 AC 43 ms
51,584 KB
testcase_23 AC 42 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)
ans = n if s != s[::-1] else n - 2 if len(set(s)) >= 2 else 0 if n % 2 == 0 else -1
print(ans)
0