結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー snrnsidysnrnsidy
提出日時 2021-06-15 01:00:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 113 ms / 1,000 ms
コード長 634 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 204,196 KB
実行使用メモリ 21,512 KB
最終ジャッジ日時 2024-06-07 11:06:43
合計ジャッジ時間 6,844 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
21,508 KB
testcase_01 AC 99 ms
21,384 KB
testcase_02 AC 100 ms
21,252 KB
testcase_03 AC 100 ms
21,252 KB
testcase_04 AC 98 ms
21,512 KB
testcase_05 AC 100 ms
21,376 KB
testcase_06 AC 101 ms
21,512 KB
testcase_07 AC 104 ms
21,376 KB
testcase_08 AC 96 ms
21,380 KB
testcase_09 AC 96 ms
21,376 KB
testcase_10 AC 109 ms
21,504 KB
testcase_11 AC 103 ms
21,384 KB
testcase_12 AC 99 ms
21,508 KB
testcase_13 AC 103 ms
21,376 KB
testcase_14 AC 98 ms
21,376 KB
testcase_15 AC 99 ms
21,380 KB
testcase_16 AC 96 ms
21,248 KB
testcase_17 AC 97 ms
21,376 KB
testcase_18 AC 98 ms
21,380 KB
testcase_19 AC 113 ms
21,384 KB
testcase_20 AC 101 ms
21,380 KB
testcase_21 AC 101 ms
21,252 KB
testcase_22 AC 97 ms
21,384 KB
testcase_23 AC 98 ms
21,508 KB
testcase_24 AC 103 ms
21,380 KB
testcase_25 AC 96 ms
21,380 KB
testcase_26 AC 97 ms
21,384 KB
testcase_27 AC 102 ms
21,384 KB
testcase_28 AC 105 ms
21,508 KB
testcase_29 AC 98 ms
21,508 KB
testcase_30 AC 96 ms
21,380 KB
testcase_31 AC 99 ms
21,252 KB
testcase_32 AC 100 ms
21,384 KB
testcase_33 AC 98 ms
21,376 KB
testcase_34 AC 97 ms
21,380 KB
testcase_35 AC 107 ms
21,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

vector <long long int> prime;
bool isprime[10000005];

void eratos()
{
	memset(isprime, true, sizeof(isprime));
	for (int i = 2; i <= 10000000; i++)
	{
		if (isprime[i])
		{
			prime.push_back(i);
			for (int j = 2 * i; j <= 10000000; j += i)
			{
				isprime[j] = false;
			}
		}
	}
}
int main(void)
{
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	long long int N, L;
	long long int res = 0;

	cin >> N >> L;

	eratos();

	for (int i = 0; i < prime.size(); i++)
	{
		long long int val = L - (N - 1) * prime[i];
		if (val >= 0) res += (val + 1);
	}

	cout << res << '\n';

	return 0;
}
0