BOJ/Python

백준 2577번 숫자의 개수 파이썬

띵지니어 2021. 10. 17. 19:35
반응형

https://www.acmicpc.net/problem/2577

 

2577번: 숫자의 개수

첫째 줄에 A, 둘째 줄에 B, 셋째 줄에 C가 주어진다. A, B, C는 모두 100보다 크거나 같고, 1,000보다 작은 자연수이다.

www.acmicpc.net

 

z = int(input())*int(input())*int(input())
for i in range(10):
    print(str(z).count(str(i)))

첫줄 z = int(input())*int(input())*int(input()) 이부분은 어찌저찌 해보다 된 코드인데 역시 파이썬은 다양하게 써도 컴퓨터가 알아먹는다.

반응형
목차(index)