結果

問題 No.1617 Palindrome Removal
ユーザー rlangevinrlangevin
提出日時 2023-01-09 15:03:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 106,628 KB
最終ジャッジ日時 2024-05-09 23:54:02
合計ジャッジ時間 3,690 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
105,916 KB
testcase_01 AC 98 ms
105,940 KB
testcase_02 AC 98 ms
106,192 KB
testcase_03 AC 96 ms
105,588 KB
testcase_04 AC 100 ms
105,872 KB
testcase_05 AC 93 ms
103,416 KB
testcase_06 AC 79 ms
102,352 KB
testcase_07 AC 72 ms
97,060 KB
testcase_08 AC 36 ms
53,076 KB
testcase_09 AC 37 ms
52,468 KB
testcase_10 AC 104 ms
105,496 KB
testcase_11 AC 95 ms
103,616 KB
testcase_12 AC 108 ms
106,628 KB
testcase_13 AC 101 ms
106,000 KB
testcase_14 AC 38 ms
52,084 KB
testcase_15 AC 38 ms
52,632 KB
testcase_16 AC 38 ms
52,760 KB
testcase_17 AC 38 ms
52,772 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
52,404 KB
testcase_21 AC 36 ms
53,564 KB
testcase_22 AC 37 ms
52,872 KB
testcase_23 AC 37 ms
52,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
N = len(S)
left, right = 0, N - 1
while left < right:
    if S[left] != S[right]:
        print(N)
        exit()
    left += 1
    right -= 1
if len(set(S)) == 1:
    if len(S) % 2:
        print(-1)
    else:
        print(0)
else:
    print(N - 2)
0