結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー tactac
提出日時 2019-08-02 10:33:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 527 ms / 1,000 ms
コード長 1,150 bytes
コンパイル時間 1,469 ms
コンパイル使用メモリ 167,260 KB
実行使用メモリ 32,128 KB
最終ジャッジ日時 2024-07-05 08:03:48
合計ジャッジ時間 20,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 456 ms
32,000 KB
testcase_01 AC 472 ms
32,088 KB
testcase_02 AC 470 ms
31,976 KB
testcase_03 AC 496 ms
32,036 KB
testcase_04 AC 463 ms
31,972 KB
testcase_05 AC 484 ms
32,128 KB
testcase_06 AC 467 ms
31,968 KB
testcase_07 AC 467 ms
32,000 KB
testcase_08 AC 477 ms
32,036 KB
testcase_09 AC 469 ms
32,000 KB
testcase_10 AC 471 ms
32,000 KB
testcase_11 AC 463 ms
31,968 KB
testcase_12 AC 459 ms
31,996 KB
testcase_13 AC 464 ms
32,080 KB
testcase_14 AC 464 ms
32,032 KB
testcase_15 AC 457 ms
31,976 KB
testcase_16 AC 471 ms
32,048 KB
testcase_17 AC 508 ms
32,000 KB
testcase_18 AC 468 ms
31,980 KB
testcase_19 AC 488 ms
32,000 KB
testcase_20 AC 467 ms
32,088 KB
testcase_21 AC 471 ms
32,000 KB
testcase_22 AC 466 ms
32,028 KB
testcase_23 AC 477 ms
32,000 KB
testcase_24 AC 473 ms
31,980 KB
testcase_25 AC 477 ms
32,000 KB
testcase_26 AC 468 ms
32,128 KB
testcase_27 AC 459 ms
31,980 KB
testcase_28 AC 450 ms
32,000 KB
testcase_29 AC 473 ms
32,116 KB
testcase_30 AC 464 ms
32,024 KB
testcase_31 AC 456 ms
32,000 KB
testcase_32 AC 471 ms
32,076 KB
testcase_33 AC 527 ms
31,996 KB
testcase_34 AC 483 ms
32,128 KB
testcase_35 AC 459 ms
31,976 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)

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() {
    auto v = sieve();
    int n, l;
    cin >> n >> l;
    ll sum = 0;
    rep(i, SZ(v)) {
        if (v[i] == 1) continue;
        ll tmp = l - (n - 1) * i;
        tmp += 1;
        // out(v[i] << " " << tmp);
        if (tmp <= 0) break;
        sum += tmp;
    }
    out(sum);
}
0