結果

問題 No.713 素数の和
ユーザー tactac
提出日時 2019-08-02 18:05:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 1,439 ms
コンパイル使用メモリ 168,456 KB
実行使用メモリ 32,128 KB
最終ジャッジ日時 2024-07-05 08:12:08
合計ジャッジ時間 5,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
32,000 KB
testcase_01 AC 330 ms
32,000 KB
testcase_02 AC 337 ms
32,000 KB
testcase_03 AC 343 ms
32,000 KB
testcase_04 AC 331 ms
31,872 KB
testcase_05 AC 334 ms
32,000 KB
testcase_06 AC 328 ms
32,000 KB
testcase_07 AC 330 ms
32,128 KB
testcase_08 AC 355 ms
32,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define F first
#define S second
#define pii pair<int, int>
#define eb emplace_back
#define all(v) v.begin(), v.end()
#define rep(i, n) for (int i = 0; i < n; ++i)
#define rep3(i, l, n) for (int i = l; i < n; ++i)
#define chmax(a, b) a = (a >= b ? a : b)
#define chmin(a, b) a = (a <= b ? a : b)
#define out(a) cout << a << endl
#define outa(a, n) rep(_, n) cout << a[_] << " "; cout << endl
#define SZ(v) (int)v.size()
#define inf (int)(1e9+7)
#define abs(x) (x >= 0 ? x : -(x))
#define ceil(a, b) a / b + !!(a % b)
#define FIX(a) fixed << setprecision(a)

vector<int> sieve() {
    const int MAX_N = 7369791 + 1;
    vector<int> v(MAX_N, 0);
    v[0] = v[1] = 1;
    for (int i = 2; i * i <= MAX_N; ++i) {
        int tmp = 2;
        while (tmp * i <= MAX_N) {
            v[tmp++ * i] = 1;
        }
    }
    return v;
}

int main() {
    int n;
    cin >> n;
    auto v = sieve();
    int ans = 0;
    rep(i, n + 1) {
        if (v[i] == 1) continue;
        ans += i;
    }
    out(ans);
}
0