結果

問題 No.1617 Palindrome Removal
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-30 17:15:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 102,712 KB
最終ジャッジ日時 2024-06-30 17:15:44
合計ジャッジ時間 3,221 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
102,024 KB
testcase_01 AC 99 ms
102,524 KB
testcase_02 AC 98 ms
101,908 KB
testcase_03 AC 102 ms
101,608 KB
testcase_04 AC 99 ms
102,688 KB
testcase_05 AC 92 ms
99,848 KB
testcase_06 AC 50 ms
59,520 KB
testcase_07 AC 44 ms
58,020 KB
testcase_08 AC 35 ms
52,012 KB
testcase_09 AC 36 ms
53,560 KB
testcase_10 AC 106 ms
101,512 KB
testcase_11 AC 96 ms
99,852 KB
testcase_12 AC 105 ms
102,620 KB
testcase_13 AC 107 ms
102,712 KB
testcase_14 AC 35 ms
53,296 KB
testcase_15 AC 35 ms
52,316 KB
testcase_16 AC 36 ms
52,460 KB
testcase_17 AC 37 ms
52,980 KB
testcase_18 AC 34 ms
52,680 KB
testcase_19 AC 35 ms
51,680 KB
testcase_20 AC 34 ms
53,012 KB
testcase_21 AC 35 ms
51,960 KB
testcase_22 AC 36 ms
53,428 KB
testcase_23 AC 35 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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