結果

問題 No.1617 Palindrome Removal
ユーザー mrngmrng
提出日時 2021-12-12 20:57:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,628 KB
実行使用メモリ 103,912 KB
最終ジャッジ日時 2024-07-21 09:01:11
合計ジャッジ時間 2,997 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
100,936 KB
testcase_01 AC 94 ms
101,972 KB
testcase_02 AC 103 ms
103,512 KB
testcase_03 AC 103 ms
102,984 KB
testcase_04 AC 111 ms
103,604 KB
testcase_05 AC 98 ms
100,496 KB
testcase_06 AC 107 ms
103,664 KB
testcase_07 AC 91 ms
97,628 KB
testcase_08 AC 38 ms
51,456 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 108 ms
102,764 KB
testcase_11 AC 102 ms
100,656 KB
testcase_12 AC 108 ms
103,912 KB
testcase_13 AC 115 ms
103,912 KB
testcase_14 AC 38 ms
51,328 KB
testcase_15 AC 38 ms
51,328 KB
testcase_16 AC 38 ms
51,584 KB
testcase_17 AC 37 ms
51,456 KB
testcase_18 AC 37 ms
51,584 KB
testcase_19 AC 38 ms
51,328 KB
testcase_20 AC 39 ms
51,456 KB
testcase_21 AC 38 ms
51,456 KB
testcase_22 AC 38 ms
51,584 KB
testcase_23 AC 38 ms
51,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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