結果

問題 No.1617 Palindrome Removal
ユーザー Akijin_007Akijin_007
提出日時 2024-06-21 21:01:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 270 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 77,068 KB
最終ジャッジ日時 2024-06-21 21:02:01
合計ジャッジ時間 3,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
76,924 KB
testcase_01 AC 58 ms
76,716 KB
testcase_02 AC 55 ms
77,068 KB
testcase_03 AC 53 ms
76,772 KB
testcase_04 AC 56 ms
77,016 KB
testcase_05 AC 56 ms
76,380 KB
testcase_06 AC 39 ms
58,300 KB
testcase_07 AC 37 ms
56,488 KB
testcase_08 AC 34 ms
52,872 KB
testcase_09 AC 33 ms
53,108 KB
testcase_10 AC 57 ms
76,844 KB
testcase_11 AC 67 ms
76,424 KB
testcase_12 AC 59 ms
76,672 KB
testcase_13 AC 57 ms
76,660 KB
testcase_14 AC 35 ms
52,236 KB
testcase_15 AC 35 ms
52,552 KB
testcase_16 AC 34 ms
52,280 KB
testcase_17 AC 33 ms
51,888 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 33 ms
52,620 KB
testcase_21 AC 35 ms
53,684 KB
testcase_22 AC 35 ms
53,448 KB
testcase_23 AC 34 ms
52,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

l = len(S)

f = 0
for i in range(l):
    if S[i] != S[l-1-i]:
        f = 1
        break

if f == 1:
    print(l)
else:
    if S.count(S[0]) == l:
        if l % 2 == 0:
            print(0)
        else:
            print(-1)
    else:
        print(l-2)
0