結果

問題 No.1617 Palindrome Removal
ユーザー puznekopuzneko
提出日時 2021-11-11 22:45:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-05-03 01:09:23
合計ジャッジ時間 2,682 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
76,672 KB
testcase_01 AC 72 ms
76,544 KB
testcase_02 AC 68 ms
76,984 KB
testcase_03 AC 68 ms
76,916 KB
testcase_04 AC 54 ms
76,680 KB
testcase_05 AC 45 ms
74,240 KB
testcase_06 AC 38 ms
57,472 KB
testcase_07 AC 35 ms
55,296 KB
testcase_08 AC 32 ms
52,224 KB
testcase_09 AC 33 ms
52,096 KB
testcase_10 AC 53 ms
76,672 KB
testcase_11 AC 47 ms
74,456 KB
testcase_12 AC 52 ms
76,528 KB
testcase_13 AC 52 ms
77,184 KB
testcase_14 AC 34 ms
51,712 KB
testcase_15 AC 32 ms
51,840 KB
testcase_16 AC 32 ms
52,096 KB
testcase_17 AC 32 ms
51,840 KB
testcase_18 AC 33 ms
51,968 KB
testcase_19 AC 31 ms
52,224 KB
testcase_20 AC 31 ms
51,712 KB
testcase_21 AC 32 ms
51,584 KB
testcase_22 AC 32 ms
52,224 KB
testcase_23 AC 32 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)

for i in range(n//2):
    if s[i] != s[-i-1]:
        print("{}".format(n))
        exit()

for i in range(n//2-1):
    if (s[i] != s[-i-3]) | (s[i] != s[-i-2]):
        print("{}".format(n-2))
        exit()
    if (s[i+2] != s[-i-1]) | (s[i+1] != s[-i-1]):
        print("{}".format(n-2))
        exit()

ans = -(n % 2)
print("{}".format(ans))
0