-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bronze II] Title: 숫자의 개수 2, Time: 36 ms, Memory: 34536 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]) |