結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー naimonon77naimonon77
提出日時 2016-08-08 20:14:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 182 ms / 1,000 ms
コード長 1,127 bytes
コンパイル時間 1,525 ms
コンパイル使用メモリ 167,064 KB
実行使用メモリ 46,920 KB
最終ジャッジ日時 2024-05-09 10:54:40
合計ジャッジ時間 8,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
46,368 KB
testcase_01 AC 158 ms
45,312 KB
testcase_02 AC 163 ms
45,692 KB
testcase_03 AC 163 ms
46,920 KB
testcase_04 AC 166 ms
45,524 KB
testcase_05 AC 171 ms
45,320 KB
testcase_06 AC 164 ms
45,480 KB
testcase_07 AC 167 ms
45,668 KB
testcase_08 AC 169 ms
45,844 KB
testcase_09 AC 175 ms
45,300 KB
testcase_10 AC 174 ms
46,044 KB
testcase_11 AC 168 ms
45,264 KB
testcase_12 AC 171 ms
46,020 KB
testcase_13 AC 164 ms
46,572 KB
testcase_14 AC 163 ms
46,920 KB
testcase_15 AC 166 ms
45,552 KB
testcase_16 AC 168 ms
45,864 KB
testcase_17 AC 173 ms
45,716 KB
testcase_18 AC 176 ms
45,396 KB
testcase_19 AC 173 ms
45,888 KB
testcase_20 AC 175 ms
45,320 KB
testcase_21 AC 174 ms
45,392 KB
testcase_22 AC 174 ms
45,796 KB
testcase_23 AC 172 ms
46,108 KB
testcase_24 AC 172 ms
45,636 KB
testcase_25 AC 176 ms
46,628 KB
testcase_26 AC 177 ms
46,480 KB
testcase_27 AC 173 ms
46,252 KB
testcase_28 AC 176 ms
45,352 KB
testcase_29 AC 181 ms
46,892 KB
testcase_30 AC 181 ms
45,704 KB
testcase_31 AC 171 ms
45,928 KB
testcase_32 AC 182 ms
45,476 KB
testcase_33 AC 173 ms
46,216 KB
testcase_34 AC 176 ms
45,440 KB
testcase_35 AC 174 ms
46,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES

#include "bits/stdc++.h"
#define REP(i,a,b) for(i=a;i<b;++i)
#define rep(i,n) REP(i,0,n)
#define ll long long
#define ull unsigned ll
typedef long double ld;
#define ALL(a) (a).begin(),(a).end()
#define ifnot(a) if(not a)
#define dump(x)  cerr << #x << " = " << (x) << endl
using namespace std;

// #define int ll
bool test = 0;
int dx[] = { 0,1,0,-1 };
int dy[] = { 1,0,-1,0 };
#define INF (1 << 28)
ull mod = (int)1e9 + 7;
//.....................
#define MAX (int)1e7 + 5

static int prime[MAX + 5];
static int isprime[MAX + 5];
void Eratosthenes(int N) {
	for (int i = 0; i < N; i++) {
		isprime[i] = 1;
	}
	for (int i = 2; i < sqrt((double)N); i++) {
		if (isprime[i]) {
			for (int j = 0; i * (j + 2) < N; j++) {
				isprime[i *(j + 2)] = 0;
			}
		}
	}
	int a = 0;
	for (int i = 2; i < N; i++) {
		if (isprime[i]) {
			prime[a++] = i;
		}
	}
}

signed main() {
	ll i, j, k, l;
	ll N,L;
	cin >> N >> L;
	Eratosthenes(MAX - 3);
	ll cnt = 0;
	for(auto &p:prime) {
		if (L - p * (N - 1) < 0) break;
		cnt += L - p * (N - 1) + 1;
	}
	cout << cnt << endl;
	return 0;
}
0