https://www.acmicpc.net/problem/2609
풀이
파이썬에는 math 라이브러리에 최대공약수와 최소공배수를 계산해주는 함수가 있다.최대공약수 = gcd(greatest common divisor)최소공배수 = lcm(least common multiple)
# 2609번 최대공약수와 최소공배수
import math
a, b = map(int, input().split())
print(math.gcd(a, b))
print(math.lcm(a, b))
출력결과
'백준 > 구현' 카테고리의 다른 글
[백준] 4150번 피보나치 수 - 파이썬 (0) | 2022.02.19 |
---|---|
[백준] 2563번 색종이 - 파이썬 (0) | 2022.02.16 |
[백준][Python] 1037번 약수 - 코팩 (0) | 2022.02.14 |
[백준] 2980번 도로와 신호등 - 파이썬 (0) | 2022.02.14 |
[백준] 10798번 세로읽기 - 파이썬 (0) | 2022.02.14 |