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
- Docker
- 자연어처리
- 백준
- 캐치카페
- PYTHON
- 금융문자분석경진대회
- 편스토랑 우승상품
- hackerrank
- programmers
- 맥북
- 프로그래머스 파이썬
- 편스토랑
- 데이콘
- Kaggle
- 코로나19
- AI 경진대회
- 프로그래머스
- Real or Not? NLP with Disaster Tweets
- leetcode
- Baekjoon
- github
- 우분투
- ChatGPT
- gs25
- Git
- dacon
- 더현대서울 맛집
- 파이썬
- SW Expert Academy
- ubuntu
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 22193번 : Multiply (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 Multiply 입니다.
22193번: Multiply
Write a program that computes a product of two non-negative integers A and B. The integers are represented in decimal notation and have N and M digits, respectively.
www.acmicpc.net
👨🏻💻 코드 ( Solution )
def multiply(A, B):
return A * B
if __name__ == "__main__":
N, M = map(int, input().split())
A = int(input())
B = int(input())
print(multiply(A, B))
GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 1964번 : 오각형, 오각형, 오각형... (Python) (0) | 2022.05.24 |
---|---|
[BaekJoon] 19698번 : 헛간 청약 (Python) (0) | 2022.05.23 |
[BaekJoon] 5613번 : 계산기 프로그램 (Python) (0) | 2022.05.21 |
[BaekJoon] 4150번 : 피보나치 수 (Python) (0) | 2022.05.20 |
[BaekJoon] 23234번 : The World Responds (Python) (0) | 2022.05.19 |
Comments