일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 우분투
- 순차 탐색
- 알고리즘
- 재귀 함수
- 자료구조
- 분할 정복
- 이진 탐색
- 백준
- type 함수
- 배열
- 그래프
- 스택
- 트리
- MiniHeap
- format 메서드
- git hub
- 그리디
- NQueen
- 기초
- 문법
- 정렬
- sys.stdin.readline()
- Git
- 동적 계획
- 자기개발
- UNIX
- 탐색
- 유닉스
- 파이썬
- IT
Archives
- Today
- Total
목록백준 알고리즘 기초/수학 (15)
코딩고치
[백준][수학]소수 찾기
#include using namespace std; bool prime(int a) { if (a n; int result = 0; for (int i = 0; i > x; if (prime(x)) result += 1; } cout
백준 알고리즘 기초/수학
2019. 9. 9. 03:35
[백준][수학]최소공배수
테스트 케이스 수만큼 최소공배수를 출력하는 문제 #include using namespace std; int gcd(int x, int y) { if (y == 0) return x; else return gcd(y, x % y); } int lcm(int x, int y) { return (x * y) / gcd(x, y); } int main(void) { int n; int x, y; cin >> n; while (n--) { cin >> x >> y; cout
백준 알고리즘 기초/수학
2019. 9. 9. 03:02