일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- spring
- unity
- 우선순위큐
- Python
- deque
- 프로그래머스
- 브루투포스
- popleft
- 파이썬
- pypy3
- LCM
- 소수찾기
- c#
- 누적합
- appendleft
- 완전탐색
- BFS
- 합 구하기
- 인프런
- python3
- mvc
- Java
- 그리디 알고리즘
- DP
- 백준
- 소수판별
- JPA
- 1일1솔
- C#강의
- 연관관계
Archives
- Today
- Total
목록GCD (1)
jae_coding

문제 문제 링크 문제 접근 최대 공약수를 구한다. import math를 이용하면 쉽게 해결 가능 math.gcd (최대 공약수) lcm은 인자 2개의 곱을 gcd로 나눈 값을 출력한다. 코드 import sys, math input = sys.stdin.readline a, b = map(int, input().split()) # Greatest Common Factor gcd = math.gcd(a, b) print(gcd) # Least Common Multiple print(a * b // gcd)
알고리즘 문제/수학(math)
2022. 7. 27. 22:21