結果

問題 No.1617 Palindrome Removal
ユーザー hir355hir355
提出日時 2021-07-22 21:27:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 96,624 KB
最終ジャッジ日時 2024-07-17 16:20:49
合計ジャッジ時間 2,828 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
94,436 KB
testcase_01 AC 93 ms
95,104 KB
testcase_02 AC 99 ms
95,848 KB
testcase_03 AC 101 ms
95,520 KB
testcase_04 AC 102 ms
96,120 KB
testcase_05 AC 93 ms
94,336 KB
testcase_06 AC 108 ms
95,864 KB
testcase_07 AC 87 ms
93,124 KB
testcase_08 AC 37 ms
51,584 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 100 ms
95,428 KB
testcase_11 AC 103 ms
94,404 KB
testcase_12 AC 107 ms
96,624 KB
testcase_13 AC 105 ms
96,368 KB
testcase_14 AC 37 ms
51,584 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 38 ms
51,996 KB
testcase_17 AC 37 ms
52,224 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
51,968 KB
testcase_21 AC 37 ms
51,456 KB
testcase_22 AC 37 ms
51,840 KB
testcase_23 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
if len(set(s)) == 1:
    if len(s) % 2 == 1:
        print(-1)
    else:
        print(0)
else:
    if s != s[::-1]:
        print(len(s))
    else:
        print(len(s) - 2)
0