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
- 구현
- 문자열
- Web
- MySQL
- 그리디 알고리즘
- wargame
- 인코그니토
- Python
- SuNiNaTas
- cryptography
- Incognito
- 수학
- Database
- Text
- Network
- 사칙연산
- 써니나타스
- misc
- Forensics
- C
- xcz.kr
- Web Hacking
- HackCTF
- writeup
- Digital Forensics
- 백준
- CTF
- N0Named
- 정렬
- php
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 5347번 LCM 본문
[Baekjoon/Python3] 5347번 LCM
def LCM(a, b):
return (a * b) // GCD(a, b)
def GCD(a, b):
if b % a:
return GCD(b % a, a)
else:
return a
n = int(input())
for i in range(n):
a, b = map(int, input().split())
print(LCM(a, b))
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 5355번 화성 수학 (0) | 2020.12.05 |
---|---|
[Baekjoon/Python3] 5354번 J박스 (0) | 2020.12.05 |
[Baekjoon/Python3/Text] 5339번 콜센터 (0) | 2020.12.05 |
[Baekjoon/Python3/Text] 5338번 마이크로소프트 로고 (0) | 2020.12.05 |
[Baekjoon/Python3] 5337번 웰컴 (0) | 2020.12.05 |
Comments