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
- 타입스크립트
- 프로그래머스
- 일상
- js to ts
- 분할메모리할당
- Redux
- memory
- 토이프로젝트
- OS
- 정렬
- react
- Operating System
- Spring
- 리덕스장바구니
- 스프링
- 자료구조
- react-redux
- 협업
- 파이썬
- CPU 스케줄링
- Java
- C++
- web
- 공부
- codeup
- 알고리즘
- 코드업
- 기초100제
- 백준
- error
Archives
- Today
- Total
목록1934 (1)
감자튀김 공장🍟
[백준/1934] 최소공배수 (with 파이썬)
✔ 문제 ✔ 풀이 👾 유클리드 호제법 import sys input = sys.stdin.readline def gcd(x, y): while y > 0: x, y = y, x % y return x def lcm(x, y): return x * y // gcd(x, y) t = int(input()) for _ in range(t): a, b = map(int, input().split()) print(lcm(a, b)) 👻 math 라이브러리 사용 import math import sys input = sys.stdin.readline t = int(input()) for _ in range(t): a, b = map(int, input().split()) print(math.lcm(a, b))
Algorithm/BOJ
2022. 12. 17. 20:19