BOJ1929
BOJ 1929. 소수 구하기
문제
코드
#include <iostream>
#include <cmath>
using namespace std;
int arr[1000001];
int main(int argc, char const *argv[])
{
cin.tie(NULL);
ios::sync_with_stdio(false);
int n, m, temp;
cin >> n >> m;
arr[1] = -1;
for (int i = 2; i <= m; i++)
{
arr[i] = i;
}
for (int i = 2; i <= sqrt(m); i++)
{
for (int j = i; j <= m; j++)
{
temp = i * j;
if (arr[temp] == -1)
continue;
else
arr[temp] = -1;
if (temp > m)
break;
}
}
for (int i = n; i <= m; i++)
{
if (arr[i] != -1)
cout << arr[i] << '\n';
}
return 0;
}
에라토스테네스의 체를 이용해 소수를 구하는 문제!
Author And Source
이 문제에 관하여(BOJ1929), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@aksel26/BOJ1929저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)