結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2018-04-12 01:45:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 265 ms / 1,000 ms
コード長 742 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 83,572 KB
実行使用メモリ 42,592 KB
最終ジャッジ日時 2024-06-26 21:18:46
合計ジャッジ時間 3,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 12 ms
8,176 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 228 ms
41,712 KB
testcase_06 AC 72 ms
24,536 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 12 ms
7,852 KB
testcase_20 AC 34 ms
15,388 KB
testcase_21 AC 15 ms
9,764 KB
testcase_22 AC 13 ms
8,280 KB
testcase_23 AC 23 ms
11,824 KB
testcase_24 AC 34 ms
16,812 KB
testcase_25 AC 64 ms
23,340 KB
testcase_26 AC 63 ms
23,808 KB
testcase_27 AC 10 ms
7,356 KB
testcase_28 AC 25 ms
12,516 KB
testcase_29 AC 66 ms
23,836 KB
testcase_30 AC 12 ms
7,312 KB
testcase_31 AC 51 ms
20,220 KB
testcase_32 AC 70 ms
23,164 KB
testcase_33 AC 259 ms
42,592 KB
testcase_34 AC 265 ms
42,536 KB
testcase_35 AC 206 ms
39,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;


int p[10000000] = {0};

int main() {
    long long N,L;
    cin >> N >> L;

    for ( long long i = 2; i <= L; i++ ) {
        if ( p[i] == 0 ) {
            for ( int j = i*2; j <= L; j += i ) {
                p[j] = 1;
            }
        }
    }

    long long ans = 0;
    for ( long long i = 2; i <= L; i++ ) {
        if ( p[i] == 0 && i*(N-1) <= L ) {
            ans += L-i*(N-1)+1;
        }
    }
    cout << ans << endl;

    return 0;
}
0