結果

問題 No.1617 Palindrome Removal
ユーザー tamatotamato
提出日時 2021-07-22 21:25:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 96,484 KB
最終ジャッジ日時 2024-07-17 16:16:41
合計ジャッジ時間 2,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
94,916 KB
testcase_01 AC 92 ms
95,156 KB
testcase_02 AC 103 ms
96,484 KB
testcase_03 AC 101 ms
95,912 KB
testcase_04 AC 110 ms
96,348 KB
testcase_05 AC 94 ms
94,960 KB
testcase_06 AC 106 ms
96,308 KB
testcase_07 AC 89 ms
93,644 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 105 ms
96,084 KB
testcase_11 AC 99 ms
94,780 KB
testcase_12 AC 110 ms
96,408 KB
testcase_13 AC 107 ms
96,280 KB
testcase_14 AC 40 ms
52,352 KB
testcase_15 AC 40 ms
52,352 KB
testcase_16 AC 40 ms
52,736 KB
testcase_17 AC 39 ms
52,608 KB
testcase_18 AC 39 ms
52,608 KB
testcase_19 AC 45 ms
51,968 KB
testcase_20 AC 39 ms
52,096 KB
testcase_21 AC 41 ms
51,968 KB
testcase_22 AC 39 ms
52,608 KB
testcase_23 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    S = input().rstrip('\n')

    if len(set(S)) == 1:
        if len(S) & 1:
            print(-1)
        else:
            print(0)
        exit()

    if len(S) & 1:
        if S != S[::-1]:
            print(len(S))
        else:
            if len(S) == 3:
                print(-1)
            else:
                print(len(S) - 2)
    else:
        if S == S[::-1]:
            print(len(S) - 2)
        else:
            print(len(S))


if __name__ == '__main__':
    main()
0