Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ubuntu
- 코로나19
- Kaggle
- Docker
- 파이썬
- hackerrank
- 금융문자분석경진대회
- 자연어처리
- SW Expert Academy
- 데이콘
- dacon
- Baekjoon
- ChatGPT
- 편스토랑 우승상품
- 편스토랑
- 더현대서울 맛집
- 우분투
- github
- programmers
- 맥북
- 프로그래머스
- Git
- PYTHON
- 프로그래머스 파이썬
- gs25
- AI 경진대회
- 백준
- Real or Not? NLP with Disaster Tweets
- leetcode
- 캐치카페
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 21567번 : 숫자의 개수 2 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 숫자의 개수 2 입니다.
🧑🏻💻 코드 ( Solution )
def number_num(A, B, C):
answer = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
ABC = A * B * C
for num in list(str(ABC)):
answer[int(num)] += 1
return "\n".join(list(map(str, answer)))
if __name__ == "__main__":
A = int(input())
B = int(input())
C = int(input())
print(number_num(A=A, B=B, C=C))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 6324번 : URLs (Python) (0) | 2022.11.20 |
---|---|
[BaekJoon] 26040번 : 특정 대문자를 소문자로 바꾸기 (Python) (0) | 2022.11.19 |
[BaekJoon] 9948번 : Have you had your birthday yet? (Python) (0) | 2022.11.17 |
[BaekJoon] 6763번 : Speed fines are not fine! (Python) (0) | 2022.11.16 |
[BaekJoon] 21612번 : Boiling Water (Python) (0) | 2022.11.15 |
Comments