algorithm codes/baekjoon online judge
1929번: 소수 구하기
mimizzang
2019. 4. 15. 20:09
문제 풀이
에라토스테네스의 체를 활용하여 소수를 구하였습니다.
코드
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
32
33
|
#include <iostream>
#include <cstring>
using namespace std;
bool number[1000001];
int main() {
int m, n;
cin >> m >> n;
memset(number, true, sizeof(number));
number[1] = false;
for (int i = 2; i <= n; i++) {
if (number[i]) {
for (int j = 2; j <= n / i; j++) {
number[j * i] = false;
}
}
}
for (int i = m; i <= n; i++) {
if (number[i]) {
cout << i << ' ';
}
}
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5; text-decoration:none">Colored by Color Scripter
|
제출 결과
문제 출처
https://www.acmicpc.net/problem/1929
1929번: 소수 구하기
첫째 줄에 자연수 M과 N이 빈 칸을 사이에 두고 주어진다. (1 ≤ M ≤ N ≤ 1,000,000)
www.acmicpc.net