結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
78,140 KB
testcase_01 WA -
testcase_02 AC 69 ms
78,232 KB
testcase_03 AC 70 ms
78,364 KB
testcase_04 AC 53 ms
59,008 KB
testcase_05 AC 50 ms
58,740 KB
testcase_06 AC 52 ms
60,752 KB
testcase_07 AC 47 ms
57,328 KB
testcase_08 AC 37 ms
52,408 KB
testcase_09 AC 37 ms
53,300 KB
testcase_10 AC 52 ms
59,108 KB
testcase_11 AC 51 ms
59,892 KB
testcase_12 AC 53 ms
59,116 KB
testcase_13 AC 53 ms
59,348 KB
testcase_14 AC 38 ms
52,432 KB
testcase_15 AC 37 ms
52,748 KB
testcase_16 WA -
testcase_17 AC 38 ms
52,112 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 39 ms
51,876 KB
testcase_21 AC 38 ms
52,700 KB
testcase_22 AC 38 ms
53,652 KB
testcase_23 AC 38 ms
52,212 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)
0