結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー face4face4
提出日時 2018-06-03 14:45:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 559 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 69,896 KB
実行使用メモリ 10,204 KB
最終ジャッジ日時 2024-06-30 09:21:35
合計ジャッジ時間 3,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
10,076 KB
testcase_01 AC 39 ms
10,200 KB
testcase_02 AC 41 ms
10,196 KB
testcase_03 AC 45 ms
10,032 KB
testcase_04 AC 40 ms
10,076 KB
testcase_05 AC 41 ms
10,204 KB
testcase_06 AC 40 ms
10,072 KB
testcase_07 AC 40 ms
10,072 KB
testcase_08 AC 41 ms
10,200 KB
testcase_09 AC 41 ms
10,200 KB
testcase_10 AC 41 ms
10,072 KB
testcase_11 AC 40 ms
10,200 KB
testcase_12 AC 40 ms
10,076 KB
testcase_13 AC 40 ms
10,072 KB
testcase_14 AC 40 ms
10,072 KB
testcase_15 AC 40 ms
10,200 KB
testcase_16 AC 41 ms
10,072 KB
testcase_17 AC 40 ms
10,196 KB
testcase_18 AC 40 ms
10,200 KB
testcase_19 AC 41 ms
10,076 KB
testcase_20 AC 40 ms
10,068 KB
testcase_21 AC 39 ms
10,200 KB
testcase_22 AC 42 ms
10,196 KB
testcase_23 AC 41 ms
10,196 KB
testcase_24 AC 41 ms
10,076 KB
testcase_25 AC 40 ms
10,200 KB
testcase_26 AC 41 ms
10,200 KB
testcase_27 AC 42 ms
10,072 KB
testcase_28 AC 40 ms
10,072 KB
testcase_29 AC 39 ms
10,200 KB
testcase_30 AC 41 ms
10,072 KB
testcase_31 AC 41 ms
10,068 KB
testcase_32 AC 40 ms
10,200 KB
testcase_33 AC 41 ms
10,200 KB
testcase_34 AC 40 ms
10,200 KB
testcase_35 AC 41 ms
10,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;

typedef long long ll;
#define max 5000000

bool np[max] = {};
vector<int> p;

int main(){
    np[0] = np[1] = true;
    for(int i = 2; i < max; i++){
        if(!np[i]){
            p.push_back(i);
            for(int j = i+i; j < max; j += i)   np[j] = true;
        }
    }

    ll n, l;
    cin >> n >> l;

    ll ans = 0;
    double upper = (double)l/(n-1);

    for(int prime : p){
        if(prime > upper)   break;
        ans += l-(n-1)*prime+1;
    }

    cout << ans << endl;
    return 0;
}
0