結果

問題 No.713 素数の和
ユーザー shioyashioya
提出日時 2018-07-16 01:33:00
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 57,688 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 09:17:43
合計ジャッジ時間 1,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.713 素数の和
#include<iostream>
#include<math.h>
using namespace std;
void col_pnum(bool*,int);
int main()
{
	int N;
	cin >> N;
	bool* pnum = new bool[N+1];
	for (int i = 0; i <= N; i++) {
		pnum[i] = true;
	}
	col_pnum(pnum, N);
	int cnt = 0;
	for (int i = 0; i <= N; i++) {
		if (pnum[i] == true) {
			cnt += i;
		}

	}
	cout << cnt;
	return 0;
}

//Nまでの素数を求める
void col_pnum(bool *_pnum,int _N) {
	_pnum[0] = _pnum[1] = false;
	for (int i=2; i<_N; i++) {
		for (int j=2; i*j <= _N; j++) {
			_pnum[i*j] = false;
		}
	}
	return;
}
0