結果

問題 No.1617 Palindrome Removal
ユーザー H20H20
提出日時 2021-07-22 23:11:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 78,728 KB
最終ジャッジ日時 2024-07-17 19:56:06
合計ジャッジ時間 2,213 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
78,240 KB
testcase_01 AC 69 ms
78,516 KB
testcase_02 AC 65 ms
78,712 KB
testcase_03 AC 64 ms
78,728 KB
testcase_04 AC 55 ms
59,532 KB
testcase_05 AC 44 ms
58,108 KB
testcase_06 AC 46 ms
60,468 KB
testcase_07 AC 41 ms
56,408 KB
testcase_08 AC 33 ms
53,096 KB
testcase_09 AC 34 ms
52,320 KB
testcase_10 AC 47 ms
59,328 KB
testcase_11 AC 45 ms
58,204 KB
testcase_12 AC 46 ms
59,392 KB
testcase_13 AC 47 ms
60,792 KB
testcase_14 AC 33 ms
52,152 KB
testcase_15 AC 32 ms
53,104 KB
testcase_16 AC 32 ms
53,508 KB
testcase_17 AC 36 ms
52,688 KB
testcase_18 AC 33 ms
52,004 KB
testcase_19 AC 32 ms
52,080 KB
testcase_20 AC 34 ms
53,220 KB
testcase_21 AC 33 ms
52,000 KB
testcase_22 AC 34 ms
53,000 KB
testcase_23 AC 33 ms
52,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
if S!=S[::-1]:
    print(len(S))
    exit()

for i in range(len(S)-1):
    if S[i]!=S[i+1]:
        if len(S)==3:
            print(-1)
            exit()
        else:
            print(len(S)-2)
            exit()
if len(S)%2==1:
    print(-1)
else:
    print(0)
0