Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 편스토랑
- 우분투
- ubuntu
- PYTHON
- Kaggle
- gs25
- 백준
- 데이콘
- 자연어처리
- Baekjoon
- 프로그래머스 파이썬
- leetcode
- 캐치카페
- programmers
- 프로그래머스
- 파이썬
- AI 경진대회
- github
- Git
- 코로나19
- Real or Not? NLP with Disaster Tweets
- Docker
- 맥북
- ChatGPT
- SW Expert Academy
- 금융문자분석경진대회
- 더현대서울 맛집
- hackerrank
- 편스토랑 우승상품
- dacon
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 2609번 : 최대공약수와 최소공배수 (Python) 본문
728x90
반응형
1일 1문제 148일차!
148일차의 문제는 최대공약수와 최소공배수 입니다.
Solution
inputNums = input()
inputNums = inputNums.split()
a = int(inputNums[0])
b = int(inputNums[1])
def gcd(a, b):
mod = a%b
while mod > 0:
a = b
b = mod
mod = a%b
return b
def lcm(a, b):
return a*b//gcd(a,b)
print(gcd(a, b))
print(lcm(a, b))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 1373번 : 2진수 8진수 (Python) (0) | 2020.07.06 |
---|---|
[BaekJoon] 1934번 : 최소공배수 (Python) (0) | 2020.07.06 |
[BaekJoon] 10430번 : 나머지 (Python) (0) | 2020.07.06 |
[BaekJoon] 1212번 : 8진수 2진수 (Python) (0) | 2020.07.01 |
[leetCode] 605. Can Place Flowers (Python) (0) | 2020.06.30 |
Comments