結果

問題 No.1617 Palindrome Removal
ユーザー kimiyukikimiyuki
提出日時 2021-07-22 21:52:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 78,840 KB
最終ジャッジ日時 2024-07-17 17:26:43
合計ジャッジ時間 2,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
78,448 KB
testcase_01 AC 64 ms
78,480 KB
testcase_02 AC 65 ms
78,840 KB
testcase_03 AC 66 ms
78,820 KB
testcase_04 AC 66 ms
78,604 KB
testcase_05 AC 60 ms
78,452 KB
testcase_06 AC 63 ms
78,108 KB
testcase_07 AC 57 ms
76,588 KB
testcase_08 AC 37 ms
52,124 KB
testcase_09 AC 36 ms
53,148 KB
testcase_10 AC 63 ms
78,168 KB
testcase_11 AC 61 ms
78,072 KB
testcase_12 AC 64 ms
78,624 KB
testcase_13 AC 65 ms
78,212 KB
testcase_14 AC 38 ms
53,660 KB
testcase_15 AC 37 ms
52,924 KB
testcase_16 AC 37 ms
53,220 KB
testcase_17 AC 37 ms
52,180 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
52,176 KB
testcase_21 AC 37 ms
52,164 KB
testcase_22 AC 37 ms
52,808 KB
testcase_23 AC 37 ms
53,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *


def solve(s: str) -> int:
    if s != ''.join(reversed(s)):
        return len(s)
    if s == s[0] * len(s):
        if len(s) % 2 == 0:
            return 0
        else:
            return -1
    return len(s) - 2


# generated by oj-template v4.8.0 (https://github.com/online-judge-tools/template-generator)
def main():
    S = input()
    a = solve(S)
    print(a)


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