336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
문제 : https://www.acmicpc.net/problem/4948
앞서 풀었던 소수 문제랑 동일하게 에라토스테네스의 체를 이용하여 소수들을 미리 구해놓은 뒤
소수의 개수를 카운트 해주었다.
관련 문제 : 2019/08/05 - [PS/백준 문제풀이] - [백준 2581] 소수
0
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
34
35
36
37
38
39
40
41
42
43
44
|
#include <iostream>
#include <cmath>
using namespace std;
int n;
bool isNotPrime[123456*2+1];
void eratos(){
// 1은 소수가 아님을 처리안해줘서 처음에 틀림
isNotPrime[1] = true;
int maxi = sqrt(123456*2);
for(int i = 2; i <= maxi; i++){
if(!isNotPrime[i]){
for(int j = i*i; j <= 123456*2; j += i)
isNotPrime[j] = true;
}
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
eratos();
while(1){
cin >> n;
if(n == 0)
break;
int count = 0;
for(int i = n+1; i <= 2*n; i++){
if(!isNotPrime[i]){
count ++;
}
}
cout << count << '\n';
}
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|
'PS > 백준 문제풀이' 카테고리의 다른 글
[백준 11000] 강의실 배정 (0) | 2019.08.05 |
---|---|
[백준 9020] 골드바흐의 추측 (0) | 2019.08.05 |
[백준 2581] 소수 (0) | 2019.08.05 |
[백준 1008] A/B (0) | 2019.08.05 |
[백준 11656] 접미사 배열 문제 (0) | 2018.03.30 |