結果
| 問題 |
No.1617 Palindrome Removal
|
| コンテスト | |
| ユーザー |
m1k__
|
| 提出日時 | 2021-07-22 21:57:35 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 369 bytes |
| コンパイル時間 | 219 ms |
| コンパイル使用メモリ | 82,824 KB |
| 実行使用メモリ | 77,312 KB |
| 最終ジャッジ日時 | 2024-07-17 17:43:15 |
| 合計ジャッジ時間 | 2,345 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 18 WA * 2 |
ソースコード
S = input()
cnt = [0]*26
f = 1
lenS = len(S)
for i in range(lenS//2):
si, sj = S[i], S[lenS-1-i]
f *= si==sj
cnt[ord(si)-97] += 1
cnt[ord(sj)-97] += 1
if lenS%2:
s = S[lenS//2]
cnt[ord(s)-97] += 1
if f:
lst = [c for c in cnt if c>0]
if len(lst)==1:
print(-1 if lenS%2 else 0)
else:
print(lenS-2)
else:
print(lenS)
m1k__