結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー dnkdnk
提出日時 2016-08-05 22:56:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 65 ms / 1,000 ms
コード長 533 bytes
コンパイル時間 1,334 ms
コンパイル使用メモリ 158,612 KB
実行使用メモリ 13,260 KB
最終ジャッジ日時 2024-05-09 09:57:43
合計ジャッジ時間 4,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
13,184 KB
testcase_01 AC 55 ms
13,056 KB
testcase_02 AC 56 ms
13,184 KB
testcase_03 AC 58 ms
13,056 KB
testcase_04 AC 59 ms
13,184 KB
testcase_05 AC 56 ms
13,148 KB
testcase_06 AC 59 ms
13,056 KB
testcase_07 AC 61 ms
13,056 KB
testcase_08 AC 56 ms
13,048 KB
testcase_09 AC 56 ms
13,184 KB
testcase_10 AC 60 ms
13,112 KB
testcase_11 AC 58 ms
13,260 KB
testcase_12 AC 58 ms
13,100 KB
testcase_13 AC 57 ms
13,184 KB
testcase_14 AC 55 ms
13,144 KB
testcase_15 AC 56 ms
13,132 KB
testcase_16 AC 57 ms
13,184 KB
testcase_17 AC 57 ms
13,120 KB
testcase_18 AC 57 ms
13,056 KB
testcase_19 AC 58 ms
13,184 KB
testcase_20 AC 63 ms
13,080 KB
testcase_21 AC 56 ms
13,056 KB
testcase_22 AC 57 ms
13,056 KB
testcase_23 AC 56 ms
13,220 KB
testcase_24 AC 55 ms
13,112 KB
testcase_25 AC 61 ms
13,152 KB
testcase_26 AC 59 ms
13,120 KB
testcase_27 AC 59 ms
13,056 KB
testcase_28 AC 65 ms
13,184 KB
testcase_29 AC 57 ms
13,056 KB
testcase_30 AC 58 ms
13,164 KB
testcase_31 AC 54 ms
13,160 KB
testcase_32 AC 58 ms
13,056 KB
testcase_33 AC 65 ms
13,164 KB
testcase_34 AC 65 ms
13,100 KB
testcase_35 AC 58 ms
13,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int N = 1e7;
bool isPrime[N + 1];

int main() {
    for (int i = 2; i <= N; ++i) isPrime[i] = true;
    for (int i = 2; i * i <= N; ++i) if (isPrime[i]) {
        for (int j = i * i; j <= N; j += i) if (isPrime[j]) {
            isPrime[j] = false;
        }
    }
    int n; cin >> n;
    int l; cin >> l;
    long long res = 0;
    for (int d = 1; 1LL * (n - 1) * d <= l; ++d) if (isPrime[d]) {
        res += l - (n - 1) * d + 1;
    }
    cout << res << '\n';
    return 0;
}
0