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
- 써니나타스
- Network
- Forensics
- MySQL
- Web Hacking
- 사칙연산
- misc
- 문자열
- Python
- Web
- Digital Forensics
- CTF
- N0Named
- 정렬
- cryptography
- writeup
- Incognito
- SuNiNaTas
- 구현
- C
- wargame
- HackCTF
- Database
- php
- 그리디 알고리즘
- Text
- xcz.kr
- 백준
- 인코그니토
- 수학
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 1934번 최소공배수 본문
[Baekjoon/Python3] 1934번 최소공배수
def LCM(a, b):
return int((a * b) / GCD(a, b))
def GCD(a, b):
if b % a:
return GCD(b % a, a)
else:
return a
t = int(input())
for i in range(t):
a, b = map(int, input().split())
print(LCM(a, b))
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 1978번 소수 찾기 (0) | 2020.12.03 |
---|---|
[Baekjoon/Python3] 1977번 완전제곱수 (0) | 2020.12.03 |
[Baekjoon/Python3] 1924번 2007년 (0) | 2020.12.03 |
[Baekjoon/Python3] 1871번 좋은 자동차 번호판 (0) | 2020.12.03 |
[Baekjoon/Python3] 1834번 나머지와 몫이 같은 수 (0) | 2020.12.03 |
Comments