結果

問題 No.1617 Palindrome Removal
ユーザー convexineqconvexineq
提出日時 2021-07-22 23:01:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-07-17 19:36:33
合計ジャッジ時間 2,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
78,720 KB
testcase_01 AC 71 ms
78,392 KB
testcase_02 AC 62 ms
78,464 KB
testcase_03 AC 60 ms
78,204 KB
testcase_04 AC 51 ms
58,496 KB
testcase_05 AC 44 ms
57,472 KB
testcase_06 AC 48 ms
58,880 KB
testcase_07 AC 40 ms
56,064 KB
testcase_08 AC 33 ms
51,712 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 47 ms
58,368 KB
testcase_11 AC 44 ms
57,984 KB
testcase_12 AC 49 ms
59,008 KB
testcase_13 AC 49 ms
58,752 KB
testcase_14 AC 34 ms
51,968 KB
testcase_15 AC 33 ms
51,840 KB
testcase_16 AC 33 ms
51,968 KB
testcase_17 AC 34 ms
51,968 KB
testcase_18 AC 34 ms
51,712 KB
testcase_19 AC 36 ms
52,352 KB
testcase_20 AC 33 ms
52,212 KB
testcase_21 AC 33 ms
51,712 KB
testcase_22 AC 33 ms
51,840 KB
testcase_23 AC 33 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
ans = 0
if s != s[::-1]:
    ans = len(s)
elif any(si != s[0] for si in s):
    if len(s) == 3:
        ans = -1
    else:
        ans = len(s)-2
elif len(s)%2:
    ans = -1
print(ans)
0