Home [Python] 백준 2577번 : 숫자의 개수
Post
Cancel

[Python] 백준 2577번 : 숫자의 개수

Problem

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

Solution

count함수를 활용해서 문자열 안의 숫자 여부를 카운팅 했다.

1
2
3
4
5
6
7
mul = 1
for _ in range(3):
    mul*=int(input())
mul = str(mul)

for i in range(10):
    print(mul.count(str(i)))
This post is licensed under CC BY 4.0 by the author.

[Python] 백준 2884번 : 알람 시계

[Python] 백준 11720번 : 숫자의 합