일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- type 함수
- UNIX
- sys.stdin.readline()
- 그래프
- 문법
- 분할 정복
- 그리디
- 트리
- IT
- 알고리즘
- NQueen
- 재귀 함수
- 이진 탐색
- git hub
- 배열
- Git
- 우분투
- 백준
- 기초
- 유닉스
- 동적 계획
- 자기개발
- 파이썬
- 탐색
- format 메서드
- 스택
- 순차 탐색
- 정렬
- MiniHeap
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