結果

問題 No.1617 Palindrome Removal
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-22 23:15:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 96,836 KB
最終ジャッジ日時 2024-07-17 20:01:51
合計ジャッジ時間 2,739 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
96,380 KB
testcase_01 AC 86 ms
96,836 KB
testcase_02 AC 87 ms
96,172 KB
testcase_03 AC 90 ms
96,220 KB
testcase_04 AC 86 ms
96,340 KB
testcase_05 AC 86 ms
95,404 KB
testcase_06 AC 47 ms
59,196 KB
testcase_07 AC 39 ms
56,056 KB
testcase_08 AC 31 ms
52,824 KB
testcase_09 AC 31 ms
52,520 KB
testcase_10 AC 92 ms
95,800 KB
testcase_11 AC 88 ms
95,000 KB
testcase_12 AC 94 ms
96,772 KB
testcase_13 AC 90 ms
96,644 KB
testcase_14 AC 34 ms
52,568 KB
testcase_15 AC 32 ms
52,112 KB
testcase_16 AC 33 ms
52,796 KB
testcase_17 AC 33 ms
52,820 KB
testcase_18 AC 31 ms
53,448 KB
testcase_19 AC 32 ms
52,636 KB
testcase_20 AC 32 ms
51,892 KB
testcase_21 AC 32 ms
52,016 KB
testcase_22 AC 33 ms
52,516 KB
testcase_23 AC 34 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
n = len(S)
if S != S[::-1]:
    print(n)
    exit()
if len(set(S)) == 1:
    if n%2:
        print(-1)
    else:
        print(0)
else:
    if n == 3:
        print(-1)
    else:
        print(n-2)
0