Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 협업
- C++
- OS
- 프로그래머스
- 공부
- 백준
- 알고리즘
- js to ts
- 자료구조
- 파이썬
- 스프링
- error
- Java
- react
- codeup
- CPU 스케줄링
- 분할메모리할당
- Spring
- 일상
- react-redux
- 코드업
- web
- Operating System
- Redux
- memory
- 리덕스장바구니
- 타입스크립트
- 기초100제
- 토이프로젝트
- 정렬
Archives
- Today
- Total
감자튀김 공장🍟
[백준/1934] 최소공배수 (with 파이썬) 본문
반응형
✔ 문제
✔ 풀이
👾 유클리드 호제법
import sys
input = sys.stdin.readline
def gcd(x, y):
while y > 0:
x, y = y, x % y
return x
def lcm(x, y):
return x * y // gcd(x, y)
t = int(input())
for _ in range(t):
a, b = map(int, input().split())
print(lcm(a, b))
👻 math 라이브러리 사용
import math
import sys
input = sys.stdin.readline
t = int(input())
for _ in range(t):
a, b = map(int, input().split())
print(math.lcm(a, b))
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[백준/3036] 링 (with 파이썬) (0) | 2022.12.19 |
---|---|
[백준/2981] 검문 (with 파이썬) (0) | 2022.12.18 |
[백준/2609] 최대공약수와 최소공배수 (with 파이썬) (0) | 2022.12.16 |
[백준/1037] 약수 (with 파이썬) (0) | 2022.12.15 |
[백준/5086] 배수와 약수 (with 파이썬) (0) | 2022.12.14 |
Comments