結果
問題 | No.713 素数の和 |
ユーザー | shioya |
提出日時 | 2018-07-16 01:34:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 592 bytes |
コンパイル時間 | 687 ms |
コンパイル使用メモリ | 57,560 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 19:54:27 |
合計ジャッジ時間 | 1,135 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
ソースコード
//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++) { if (_pnum[i] == false)continue; for (int j=2; i*j <= _N; j++) { _pnum[i*j] = false; } } return; }