[ 백준 ] 4948번 베르트랑 공준
문제
https://www.acmicpc.net/problem/4948
풀이
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
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <iostream>
#include <cmath>
using namespace std;
bool decimal(int n, int m)
{
if (n < 2) // 1은 소수 X
{
return false;
}
int a = (int)sqrt(n); //약수는 본인의 루트값보다 클수 없으므로 범위를 줄임
for (int i = 2; i <= a; i++)
{
if (n % i == 0)
{
return false;
}
}
return true;
}
int main()
{
int n;
while (1)
{
cin >> n;
int cnt = 0;
int m = 2 * n;
if (!n)
{
break;
}
n++;
for (; n <= m; n++) // n~2n까지
{
bool isPos = decimal(n,m);
if (isPos)
{
cnt++;
}
}
printf("%d\n", cnt);
}
return 0;
}
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.