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 |
Tags
- 캐치카페
- programmers
- 백준
- 편스토랑
- 프로그래머스 파이썬
- 편스토랑 우승상품
- 프로그래머스
- Baekjoon
- 더현대서울 맛집
- Kaggle
- Docker
- 데이콘
- Git
- ubuntu
- PYTHON
- leetcode
- gs25
- SW Expert Academy
- 맥북
- 우분투
- AI 경진대회
- hackerrank
- github
- 금융문자분석경진대회
- Real or Not? NLP with Disaster Tweets
- 자연어처리
- ChatGPT
- dacon
- 파이썬
- 코로나19
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