結果

問題 No.1617 Palindrome Removal
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-22 23:13:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 168 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,596 KB
最終ジャッジ日時 2024-07-17 19:58:05
合計ジャッジ時間 2,601 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
101,800 KB
testcase_01 AC 93 ms
102,460 KB
testcase_02 AC 92 ms
102,108 KB
testcase_03 AC 92 ms
101,784 KB
testcase_04 AC 94 ms
102,596 KB
testcase_05 AC 92 ms
99,584 KB
testcase_06 AC 46 ms
58,880 KB
testcase_07 AC 42 ms
56,192 KB
testcase_08 AC 32 ms
52,352 KB
testcase_09 AC 32 ms
51,840 KB
testcase_10 AC 91 ms
101,316 KB
testcase_11 AC 90 ms
99,920 KB
testcase_12 AC 93 ms
102,488 KB
testcase_13 AC 93 ms
102,464 KB
testcase_14 AC 33 ms
51,712 KB
testcase_15 AC 31 ms
52,224 KB
testcase_16 AC 32 ms
52,352 KB
testcase_17 AC 33 ms
52,224 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 32 ms
52,224 KB
testcase_21 AC 32 ms
51,712 KB
testcase_22 AC 32 ms
51,712 KB
testcase_23 AC 33 ms
51,712 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:
    print(n-2)
0