티스토리 뷰
https://www.acmicpc.net/problem/1475
import sys
N = str(sys.stdin.readline())
N = N.replace('9', '6')
res = 0
for i in range(9):
cnt = N.count(str(i))
if i == 6:
cnt = (cnt // 2 + cnt % 2)
if res < cnt:
res = cnt
print(res)
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 11403 : 경로 찾기 - Python (0) | 2020.07.09 |
---|---|
[백준] 14503 : 로봇 청소기 - Python (0) | 2020.07.07 |
[백준] 3190 : 뱀 - Python (0) | 2020.07.03 |
[백준] 14891 : 톱니바퀴 - Python (0) | 2020.07.02 |
[백준] 14500 : 테트로미노 - Python (0) | 2020.06.30 |