https://www.acmicpc.net/problem/1475
#Solution
import math
room_num = list(map(int, str(input())))
set_num = [0] * 9
for i in room_num:
if i == 6 or i == 9:
set_num[5] += 0.5
else:
set_num[i] += 1
print(math.ceil(max(set_num)))
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#55 백준 파이썬 [2588] 곱셈 (0) | 2019.07.03 |
---|---|
#54 백준 파이썬 [10171] 고양이 (0) | 2019.07.03 |
#52 백준 파이썬 [2775] 부녀회장이 될테야 (0) | 2019.03.15 |
#51 백준 파이썬 [1924] 2007년 (0) | 2019.03.15 |
#50 백준 파이썬 [10250] ACM 호텔 (0) | 2019.03.12 |