Skip to content

Commit

Permalink
[Bronze II] Title: 숫자의 개수, Time: 32 ms, Memory: 31120 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
boyamie committed Jul 14, 2024
1 parent 05f982a commit ff174cf
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
30 changes: 30 additions & 0 deletions 백준/Bronze/2577. 숫자의 개수/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# [Bronze II] 숫자의 개수 - 2577

[문제 링크](https://www.acmicpc.net/problem/2577)

### 성능 요약

메모리: 31120 KB, 시간: 32 ms

### 분류

사칙연산, 구현, 수학

### 제출 일자

2024년 7월 14일 13:35:15

### 문제 설명

<p>세 개의 자연수 A, B, C가 주어질 때 A × B × C를 계산한 결과에 0부터 9까지 각각의 숫자가 몇 번씩 쓰였는지를 구하는 프로그램을 작성하시오.</p>

<p>예를 들어 A = 150, B = 266, C = 427 이라면 A × B × C = 150 × 266 × 427 = 17037300 이 되고, 계산한 결과 17037300 에는 0이 3번, 1이 1번, 3이 2번, 7이 2번 쓰였다.</p>

### 입력

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

### 출력

<p>첫째 줄에는 A × B × C의 결과에 0 이 몇 번 쓰였는지 출력한다. 마찬가지로 둘째 줄부터 열 번째 줄까지 A × B × C의 결과에 1부터 9까지의 숫자가 각각 몇 번 쓰였는지 차례로 한 줄에 하나씩 출력한다.</p>

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import sys
input = sys.stdin.readline
a = int(input())
b = int(input())
c = int(input())
resu = a*b*c
for i in range(10):
print(str(resu).count(str(i)))

0 comments on commit ff174cf

Please sign in to comment.