Skip to content

Commit

Permalink
[Bronze II] Title: 숫자의 개수 2, Time: 36 ms, Memory: 34536 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
Youn-Rha committed Dec 6, 2024
1 parent 133f3a4 commit 46e1c4c
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
30 changes: 30 additions & 0 deletions 백준/Bronze/21567. 숫자의 개수 2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# [Bronze II] 숫자의 개수 2 - 21567

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

### 성능 요약

메모리: 34536 KB, 시간: 36 ms

### 분류

사칙연산, 구현, 수학

### 제출 일자

2024년 12월 7일 00:19:19

### 문제 설명

<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는 모두 1,000,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,18 @@
import sys, math

# sys.setrecursionlimit(100000)

def input():
return sys.stdin.readline().rstrip()


# main
if __name__ == "__main__":
lst = [0 for _ in range(10)]
A = int(input())
B = int(input())
C = int(input())
for i in str(A * B * C):
lst[int(i)] += 1
for i in range(10):
print(lst[i])

0 comments on commit 46e1c4c

Please sign in to comment.