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
- 백트래킹
- 유클리드호제법
- Sort
- 백준
- 최소공배수
- 분할정복
- map
- Set
- 문자열
- 정렬
- 티스토리챌린지
- 깊이우선탐색
- 에라토스테네스의 체
- 오블완
- DP
- 알고리즘
- vector
- 우선순위큐
- 그래프
- C++
- stoi
- int
- 이분탐색
- 배열
- DFS
- priority_queue
- 프로그래머스
- N과M
- BFS
- 다이나믹프로그래밍
Archives
- Today
- Total
목록1929 (1)
안녕 세상아,
[c++/백준] 1929 소수 구하기
https://www.acmicpc.net/problem/1929 1929번: 소수 구하기 첫째 줄에 자연수 M과 N이 빈 칸을 사이에 두고 주어진다. (1 ≤ M ≤ N ≤ 1,000,000) M이상 N이하의 소수가 하나 이상 있는 입력만 주어진다. www.acmicpc.net #include #include #include #include #include using namespace std; int arr[1000001] = { 0, }; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int a, b; cin >> a >> b; for (int i = 2; i
백준
2023. 5. 5. 21:39