結果

問題 No.1617 Palindrome Removal
ユーザー convexineqconvexineq
提出日時 2021-07-22 22:56:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 113 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 78,436 KB
最終ジャッジ日時 2024-07-17 19:25:27
合計ジャッジ時間 2,242 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
78,368 KB
testcase_01 AC 76 ms
78,328 KB
testcase_02 AC 62 ms
78,436 KB
testcase_03 AC 64 ms
78,200 KB
testcase_04 AC 49 ms
59,272 KB
testcase_05 AC 47 ms
58,020 KB
testcase_06 AC 49 ms
58,876 KB
testcase_07 AC 40 ms
56,788 KB
testcase_08 AC 33 ms
53,228 KB
testcase_09 AC 31 ms
52,608 KB
testcase_10 AC 48 ms
59,680 KB
testcase_11 AC 44 ms
57,840 KB
testcase_12 AC 48 ms
59,744 KB
testcase_13 AC 46 ms
59,940 KB
testcase_14 AC 32 ms
52,952 KB
testcase_15 AC 33 ms
52,188 KB
testcase_16 AC 33 ms
53,360 KB
testcase_17 AC 33 ms
52,868 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 35 ms
53,704 KB
testcase_21 AC 32 ms
52,416 KB
testcase_22 AC 34 ms
52,152 KB
testcase_23 AC 33 ms
53,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
print(len(s) if s != s[::-1] else len(s)-2 if any(si != s[0] for si in s) else -1 if len(s)%2 else 0)
0