結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー ikdikd
提出日時 2016-08-05 23:43:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 250 ms / 1,000 ms
コード長 699 bytes
コンパイル時間 608 ms
コンパイル使用メモリ 59,452 KB
実行使用メモリ 81,780 KB
最終ジャッジ日時 2024-12-15 22:22:03
合計ジャッジ時間 3,270 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 12 ms
11,212 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 236 ms
78,012 KB
testcase_06 AC 101 ms
45,384 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 12 ms
12,752 KB
testcase_20 AC 40 ms
27,140 KB
testcase_21 AC 15 ms
14,068 KB
testcase_22 AC 13 ms
12,816 KB
testcase_23 AC 25 ms
18,844 KB
testcase_24 AC 48 ms
27,592 KB
testcase_25 AC 103 ms
43,364 KB
testcase_26 AC 102 ms
43,456 KB
testcase_27 AC 9 ms
9,460 KB
testcase_28 AC 28 ms
21,192 KB
testcase_29 AC 90 ms
41,820 KB
testcase_30 AC 10 ms
10,860 KB
testcase_31 AC 81 ms
35,048 KB
testcase_32 AC 108 ms
42,188 KB
testcase_33 AC 250 ms
81,624 KB
testcase_34 AC 248 ms
81,780 KB
testcase_35 AC 214 ms
75,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<math.h>

using namespace std;
long long arr[10000000];

void Eratosthenes(long long N){
	for(long long i=0; i<N; i++){
		arr[i]=1;
	}
	for(long long i=2; i<sqrt(N); i++){
		if(arr[i]){
			for(long long j=0; i*(j + 2)<N; j++){
				arr[i*(j+2)]=0;
			}
		}
	}
/*
	for(long long i = 2; i < N; i++){
		if(arr[i]){
			//cout << i << endl;
		}
	}
*/
    arr[1]=0;
    arr[0]=-1;
}

int main(){

    long long N, L;
    cin>> N>> L;

    Eratosthenes(L);

    long long ans=0;
    for(long long i=2; i<=L; i++){
        if(arr[i]==0) continue;
        long long mi=(N-1)*i;
        if(mi>L) continue;
        ans=ans+(L-mi+1);
    }

    printf("%lld\n", ans);

    return 0;
}
0