N = input()
bring = []
result = 0
for i in N:
p = int(i)
if p not in bring:
if p == 9:
if 6 in bring:
bring.remove(6)
continue
elif p == 6:
if 9 in bring:
bring.remove(9)
continue
for j in range(10):
bring.append(j)
result += 1
bring.remove(p)
else:
bring.remove(p)
print(result)
'프로그래밍 > 알고리즘' 카테고리의 다른 글
[Python] 백준 1417번 : 국회의원 선거 (0) | 2020.04.02 |
---|---|
[Python] 백준 2309번 : 일곱난쟁이 (0) | 2020.02.18 |
[Python] 백준 2217번 : 로프 (0) | 2020.02.18 |