結果

問題 No.1617 Palindrome Removal
ユーザー vltmttvltmtt
提出日時 2021-07-22 22:40:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 910 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 77,228 KB
最終ジャッジ日時 2024-07-17 18:57:56
合計ジャッジ時間 3,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
77,196 KB
testcase_01 AC 103 ms
76,920 KB
testcase_02 AC 111 ms
77,052 KB
testcase_03 AC 107 ms
76,848 KB
testcase_04 AC 107 ms
77,008 KB
testcase_05 AC 100 ms
76,472 KB
testcase_06 AC 115 ms
77,228 KB
testcase_07 AC 85 ms
76,104 KB
testcase_08 AC 41 ms
55,000 KB
testcase_09 AC 41 ms
54,480 KB
testcase_10 AC 113 ms
76,940 KB
testcase_11 AC 109 ms
76,696 KB
testcase_12 AC 115 ms
76,888 KB
testcase_13 AC 115 ms
77,212 KB
testcase_14 AC 40 ms
54,080 KB
testcase_15 AC 41 ms
53,996 KB
testcase_16 AC 40 ms
54,860 KB
testcase_17 AC 40 ms
54,792 KB
testcase_18 AC 40 ms
54,660 KB
testcase_19 AC 40 ms
54,072 KB
testcase_20 AC 40 ms
53,756 KB
testcase_21 AC 43 ms
54,840 KB
testcase_22 AC 41 ms
53,352 KB
testcase_23 AC 41 ms
54,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
x = input()
if len(x) >= 4:
    c = Counter(x)
    if len(c) == 1:
        print(-(len(x)%2))
    else:
        for i in range(len(x)//2):
            if x[i] != x[-i-1]:
                print(len(x))
                break
        else:
            print(len(x)-2)
else:
    if x[0] == x[-1]:
        print(-(len(x)%2))
    else:
        print(len(x))
0