結果

問題 No.1617 Palindrome Removal
ユーザー tassei903tassei903
提出日時 2021-07-22 22:11:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 74,368 KB
最終ジャッジ日時 2024-07-17 18:07:33
合計ジャッジ時間 2,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 70 ms
73,984 KB
testcase_02 AC 69 ms
73,088 KB
testcase_03 AC 70 ms
72,960 KB
testcase_04 AC 72 ms
74,368 KB
testcase_05 AC 66 ms
71,168 KB
testcase_06 AC 72 ms
73,884 KB
testcase_07 AC 60 ms
67,840 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 36 ms
52,352 KB
testcase_10 AC 69 ms
73,216 KB
testcase_11 AC 66 ms
71,296 KB
testcase_12 AC 72 ms
74,112 KB
testcase_13 AC 73 ms
74,112 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 38 ms
52,352 KB
testcase_16 AC 37 ms
51,456 KB
testcase_17 AC 37 ms
51,456 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
52,224 KB
testcase_21 AC 37 ms
52,336 KB
testcase_22 WA -
testcase_23 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
if len(s)==1:
    print(-1)
else:
    n = len(s)
    a = s[:(n+1)//2]
    b = s[::-1][:(n+1)//2]
    if sum([s[0]==s[i]for i in range(n)])==n and a==b:
        print(0)
    elif a==b:
        print(n-2)
    else:
        print(n)

        
0