일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 최단 경로
- php 프로그래밍 입문 예제
- 스프링
- php 프로그래밍 입문 솔루션
- 페이코 추천인
- SWEA
- 배열
- C언어
- php 프로그래밍 입문
- 백준
- C
- php 프로그래밍 입문 3판
- 한정 분기
- 페이코 친구코드
- 자바 스프링
- 파이썬
- php 프로그래밍
- Flutter
- 자바
- php
- 페이코 초대코드
- php 프로그래밍 입문 문제풀이
- php 프로그래밍 입문 연습문제
- Java
- programmers
- 플러터
- 페이코 추천인코드
- spring
- 플러터 개발환경 설정
- JAVA SPRING
Archives
- Today
- Total
11-07 11:40
ImJay
[파이썬/Python] 백준 22193번 Multiply 본문
반응형
[파이썬/Python] 백준 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.
해설
The first line contains the lengths N and M, separated by a space. A is given on the second and B on the third line. The numbers will not have leading zeros.
첫 줄에 N, M 으로 A, B 의 길이를 입력 받고 차례로 A, B 를 입력 받는다.
Output the product of A and B without leading zeros.
A, B 의 곱을 출력한다.코드
N, M = map(int, input().split())
A = int(input())
B = int(input())
print(A*B)
풀이
1. 숫자의 길이 N, M 그리고 A, B 를 입력 받는다.
N, M = map(int, input().split())
A = int(input())
B = int(input())
2. A * B 를 출력한다.
print(A*B)
반응형
'Solved.ac - Python > Bronze V' 카테고리의 다른 글
[파이썬/Python] 백준 23235번 The Fastest Sorting Algorithm In The World (1) | 2022.11.29 |
---|---|
[파이썬/Python] 백준 23234번 The World Responds (0) | 2022.11.29 |
[파이썬/Python] 백준 21598번 SciComLove (0) | 2022.11.29 |
[파이썬/Python] 백준 21300번 Bottle Return (0) | 2022.11.28 |
[파이썬/Python] 백준 20492번 세금 (0) | 2022.11.28 |
Comments