結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 98 ms
95,960 KB
testcase_03 AC 102 ms
96,212 KB
testcase_04 AC 101 ms
95,860 KB
testcase_05 AC 93 ms
94,752 KB
testcase_06 AC 104 ms
95,992 KB
testcase_07 AC 90 ms
93,368 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 37 ms
51,584 KB
testcase_10 AC 101 ms
95,492 KB
testcase_11 AC 95 ms
94,480 KB
testcase_12 AC 103 ms
96,044 KB
testcase_13 AC 107 ms
96,248 KB
testcase_14 AC 37 ms
51,712 KB
testcase_15 AC 37 ms
51,840 KB
testcase_16 WA -
testcase_17 AC 38 ms
51,584 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
51,456 KB
testcase_21 AC 38 ms
52,128 KB
testcase_22 WA -
testcase_23 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
if 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