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 |
Tags
- 단계별로 풀어보기
- 이론
- 공공데이터
- 명품 자바 프로그래밍
- Java11
- 응용
- programmers
- 파이썬
- GROUP BY 절
- 백준
- Python
- Python 3
- 기본
- SELECT 절
- 자바
- JAVA 11
- level1
- HAVING 절
- 기초100제
- 헤드퍼스트 디자인패턴
- pypy3
- 기초
- SQLD / SQLP
- java
- baekjoon
- Codeup
- 코딩테스트
- 개념
- Codeforces Round #802 (Div. 2)
- BOJ
Archives
- Today
- Total
목록14 (1)
Development Project
[ Baekjoon - 단계별로 풀어보기(06/11~06/13) ] - 14단계 : 정수론 및 조합론
5086 : 배수와 약수 while True: a,b=map(int,input().split()) if a==0 and b==0: break print("factor" if b%a==0 else ("multiple" if a%b==0 else "neither")) 1037 : 약수 n=int(input()) l=list(map(int,input().split())) l.sort() print(l[0]*l[-1]) 2609 : 최대공약수와 최소공배수 l=list(map(int,input().split())) lcf=1;ok=0 minVal=min(l) for i in range(2,minVal+1): while True: if l[0]%i==0 and l[1]%i==0: lcf*=i l[0]//=i l[1..
CodingTest/Baekjoon
2022. 6. 11. 13:55