結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
101,548 KB
testcase_01 AC 101 ms
102,704 KB
testcase_02 AC 101 ms
102,380 KB
testcase_03 AC 99 ms
101,660 KB
testcase_04 AC 101 ms
102,888 KB
testcase_05 AC 93 ms
99,696 KB
testcase_06 AC 50 ms
58,752 KB
testcase_07 AC 46 ms
56,576 KB
testcase_08 AC 37 ms
51,456 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 103 ms
101,320 KB
testcase_11 AC 97 ms
100,068 KB
testcase_12 AC 106 ms
102,580 KB
testcase_13 AC 110 ms
102,300 KB
testcase_14 AC 35 ms
51,840 KB
testcase_15 AC 36 ms
51,840 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 37 ms
52,224 KB
testcase_18 AC 37 ms
51,456 KB
testcase_19 AC 35 ms
51,712 KB
testcase_20 AC 36 ms
51,712 KB
testcase_21 AC 36 ms
52,352 KB
testcase_22 AC 36 ms
51,840 KB
testcase_23 AC 36 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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