[백준]S5-1475

py_code·2020년 12월 26일
0

백준-실버5

목록 보기
7/19
post-custom-banner

from collections import Counter
import math
N = input().replace('9','6')
CT = Counter(N)

if '6' in CT:
    CT['6'] = math.ceil(CT['6']/2)
print(max(CT.values()))
profile
개발자를 꿈꿉니다.

0개의 댓글