How to filter the problem difficulty wise like only of type A
| № | Пользователь | Рейтинг |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | turmax | 3559 |
| 6 | tourist | 3541 |
| 7 | strapple | 3515 |
| 8 | ksun48 | 3461 |
| 9 | dXqwq | 3436 |
| 10 | Otomachi_Una | 3413 |
| Страны | Города | Организации | Всё → |
| № | Пользователь | Вклад |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | adamant | 153 |
| 3 | Um_nik | 147 |
| 3 | Proof_by_QED | 147 |
| 5 | Dominater069 | 145 |
| 6 | errorgorn | 142 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | TheScrasse | 134 |
| 10 | chromate00 | 133 |
How to filter the problem difficulty wise like only of type A
from collections import defaultdict
import math
def solve(a):
if len(a)<=2:
return 0
result=float("inf")
for i in "0123456789":
for j in "0123456789":
first=i
second=j
f=True
s=False
ans=""
for elements in a:
if first==elements and f:
ans+=first
f=False
s=True
elif second==elements and s:
ans+=second
f=True
s=False
if first!=second and len(ans)%2==1:
ans=ans[:-1]
result=min(len(a)-len(ans),result)
return result
for _ in range(int(input())):
a=input()
print(solve(a))
| Название |
|---|


