結果

問題 No.1617 Palindrome Removal
ユーザー mrngmrng
提出日時 2021-12-12 20:53:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 142 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 104,240 KB
最終ジャッジ日時 2024-07-21 08:56:24
合計ジャッジ時間 4,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
101,332 KB
testcase_01 AC 99 ms
102,004 KB
testcase_02 AC 100 ms
103,056 KB
testcase_03 AC 101 ms
102,988 KB
testcase_04 AC 104 ms
104,184 KB
testcase_05 AC 96 ms
100,764 KB
testcase_06 AC 107 ms
104,240 KB
testcase_07 AC 93 ms
98,160 KB
testcase_08 AC 38 ms
51,456 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 112 ms
103,168 KB
testcase_11 AC 103 ms
100,936 KB
testcase_12 AC 114 ms
103,284 KB
testcase_13 AC 113 ms
103,928 KB
testcase_14 AC 37 ms
51,584 KB
testcase_15 AC 37 ms
51,328 KB
testcase_16 AC 38 ms
51,584 KB
testcase_17 AC 39 ms
51,200 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 39 ms
51,584 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 AC 40 ms
51,584 KB
testcase_23 AC 37 ms
51,712 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]:
		print(len(s)-2)
	else:
		print(len(s))
0