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 | 31 |
Tags
- 협업
- CPU 스케줄링
- Operating System
- 일상
- 프로그래머스
- 백준
- Spring
- 스프링
- 공부
- 알고리즘
- web
- 리덕스장바구니
- 코드업
- js to ts
- 기초100제
- Java
- 토이프로젝트
- error
- codeup
- 정렬
- 타입스크립트
- react
- 분할메모리할당
- react-redux
- 파이썬
- memory
- C++
- Redux
- 자료구조
- OS
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