백준 2577번 파이썬 코드 답안

    문제

     

     

     

    파이썬 코드 답안

    a = int(input())
    b = int(input())
    c = int(input())
    
    a = list(str(a*b*c))
    
    
    i= 0
    count = 0
    j=0
    
    while j <= 9 :
        while i < len(a) :
            if a[i] == str(j) :
                count += 1
                i += 1
            else :
                i += 1
        print(count)
        count = 0
        i = 0
        j += 1
    
    

    'CS > BOJ' 카테고리의 다른 글

    백준 1546번 문제 파이썬 코드 답안  (0) 2021.03.22
    3052번 문제  (0) 2021.03.22
    백준 10871 파이썬 코드 답안  (0) 2021.03.22
    백준 15552번 파이썬 코드  (0) 2021.03.22
    백준 1110번 파이썬 코드 답안  (0) 2021.03.22

    댓글

    Designed by JB FACTORY