Skip to content

Commit

Permalink
[Bronze I] Title: 최소공배수, Time: 40 ms, Memory: 31120 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
boyamie committed Jun 27, 2024
1 parent ab05bd0 commit 11084c2
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
30 changes: 30 additions & 0 deletions 백준/Bronze/1934. 최소공배수/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# [Bronze I] 최소공배수 - 1934

[문제 링크](https://www.acmicpc.net/problem/1934)

### 성능 요약

메모리: 31120 KB, 시간: 40 ms

### 분류

유클리드 호제법, 수학, 정수론

### 제출 일자

2024년 6월 27일 23:36:41

### 문제 설명

<p>두 자연수 A와 B에 대해서, A의 배수이면서 B의 배수인 자연수를 A와 B의 공배수라고 한다. 이런 공배수 중에서 가장 작은 수를 최소공배수라고 한다. 예를 들어, 6과 15의 공배수는 30, 60, 90등이 있으며, 최소 공배수는 30이다.</p>

<p>두 자연수 A와 B가 주어졌을 때, A와 B의 최소공배수를 구하는 프로그램을 작성하시오.</p>

### 입력

<p>첫째 줄에 테스트 케이스의 개수 T(1 ≤ T ≤ 1,000)가 주어진다. 둘째 줄부터 T개의 줄에 걸쳐서 A와 B가 주어진다. (1 ≤ A, B ≤ 45,000)</p>

### 출력

<p>첫째 줄부터 T개의 줄에 A와 B의 최소공배수를 입력받은 순서대로 한 줄에 하나씩 출력한다.</p>

11 changes: 11 additions & 0 deletions 백준/Bronze/1934. 최소공배수/최소공배수.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import sys
input = sys.stdin.readline
t = int(input())
for i in range(t):
a, b = map(int, input().split())
result = a*b

while b>0:
a,b = b, a%b

print(result//a)

0 comments on commit 11084c2

Please sign in to comment.