結果

問題 No.1617 Palindrome Removal
ユーザー neterukunneterukun
提出日時 2021-07-22 21:35:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 309 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 95,604 KB
最終ジャッジ日時 2024-07-17 16:46:05
合計ジャッジ時間 2,743 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
95,540 KB
testcase_01 AC 87 ms
95,324 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 89 ms
95,484 KB
testcase_05 AC 64 ms
76,288 KB
testcase_06 AC 50 ms
59,008 KB
testcase_07 AC 46 ms
56,064 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 89 ms
94,880 KB
testcase_11 AC 65 ms
76,928 KB
testcase_12 AC 93 ms
95,536 KB
testcase_13 AC 89 ms
95,528 KB
testcase_14 AC 40 ms
51,456 KB
testcase_15 AC 39 ms
51,840 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 39 ms
51,456 KB
testcase_19 AC 38 ms
51,840 KB
testcase_20 AC 39 ms
51,968 KB
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 39 ms
52,224 KB
testcase_23 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)


a = s[0 : n // 2]
b = s[(n + 1) // 2 : n][::-1]

if a != b:
    print(n)
elif len(set(list(a))) != 1:
    if n == 1:
        print(-1)
    elif n == 2:
        print(2)
    elif n == 3:
        print(-1)
    else:
        print(n - 2)
elif n % 2 == 1:
    print(-1)
else:
    print(0)
0