結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー masamasa
提出日時 2016-08-05 22:56:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 1,010 bytes
コンパイル時間 652 ms
コンパイル使用メモリ 78,816 KB
実行使用メモリ 43,512 KB
最終ジャッジ日時 2024-05-09 09:53:50
合計ジャッジ時間 2,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 9 ms
7,084 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 72 ms
41,704 KB
testcase_06 AC 38 ms
24,292 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 10 ms
7,296 KB
testcase_20 AC 24 ms
15,248 KB
testcase_21 AC 12 ms
8,652 KB
testcase_22 AC 10 ms
7,708 KB
testcase_23 AC 16 ms
11,120 KB
testcase_24 AC 25 ms
15,268 KB
testcase_25 AC 38 ms
23,392 KB
testcase_26 AC 40 ms
23,328 KB
testcase_27 AC 8 ms
6,940 KB
testcase_28 AC 17 ms
12,044 KB
testcase_29 AC 38 ms
22,760 KB
testcase_30 AC 9 ms
6,940 KB
testcase_31 AC 32 ms
19,248 KB
testcase_32 AC 38 ms
22,928 KB
testcase_33 AC 77 ms
43,512 KB
testcase_34 AC 75 ms
43,496 KB
testcase_35 AC 68 ms
39,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>
#include <string>
#include <cmath>

using namespace std;

template <class T>
vector<bool> getIsPrime(T n) {
	vector<bool> p(n + 1, true);
	p[0] = p[1] = false;

	T limit = sqrt(n);
	for (T i = 4; i <= n; i += 2) {
		p[i] = false;
	}
	for (T i = 3; i <= limit; i += 2) {
		if (p[i]) {
			for (T j = i * i; j <= n; j += i) {
				p[j] = false;
			}
		}
	}

	return p;
}

template <class T>
vector<T> getPrimes(T n) {
	auto isPrime = getIsPrime(n);
	vector<T> primes((n + 1) / 2, 0);
	auto it = primes.begin();
	for (T i = 2; i <= n; i++) {
		if (isPrime[i]) {
			*it = i;
			it++;
		}
	}
	primes.erase(it, primes.end());
	return primes;
}

int main() {
	long long n, l;

	cin >> n >> l;
	vector<long long> primes = getPrimes(l);


	long long ans = 0;
	for (auto p : primes) {
		long long total_len = p * (n - 1);
		if (total_len > l) {
			break;
		}
		ans += l - total_len + 1;
	}

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