結果

問題 No.1617 Palindrome Removal
ユーザー H20H20
提出日時 2021-07-22 23:08:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 192 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 78,600 KB
最終ジャッジ日時 2024-07-17 19:49:10
合計ジャッジ時間 2,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
78,264 KB
testcase_01 AC 75 ms
78,536 KB
testcase_02 AC 67 ms
78,496 KB
testcase_03 AC 67 ms
78,600 KB
testcase_04 AC 53 ms
59,412 KB
testcase_05 AC 50 ms
58,012 KB
testcase_06 AC 52 ms
60,204 KB
testcase_07 AC 47 ms
57,432 KB
testcase_08 AC 37 ms
52,904 KB
testcase_09 AC 38 ms
52,216 KB
testcase_10 AC 51 ms
59,020 KB
testcase_11 AC 50 ms
58,724 KB
testcase_12 AC 53 ms
59,296 KB
testcase_13 AC 53 ms
60,684 KB
testcase_14 AC 38 ms
52,952 KB
testcase_15 AC 38 ms
52,492 KB
testcase_16 AC 38 ms
52,612 KB
testcase_17 AC 39 ms
52,440 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
52,308 KB
testcase_21 AC 37 ms
53,164 KB
testcase_22 AC 38 ms
53,072 KB
testcase_23 AC 39 ms
52,464 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]:
        print(len(S)-2)
        exit()
if len(S)%2==1:
    print(-1)
else:
    print(0)
0