結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー startcppstartcpp
提出日時 2016-08-05 22:46:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 545 bytes
コンパイル時間 1,300 ms
コンパイル使用メモリ 53,980 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-05-09 09:16:14
合計ジャッジ時間 2,850 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 9 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 117 ms
12,800 KB
testcase_06 AC 48 ms
8,576 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 9 ms
5,376 KB
testcase_20 AC 27 ms
6,144 KB
testcase_21 AC 11 ms
5,376 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 17 ms
5,376 KB
testcase_24 AC 28 ms
6,272 KB
testcase_25 AC 47 ms
8,192 KB
testcase_26 AC 47 ms
8,320 KB
testcase_27 AC 7 ms
5,376 KB
testcase_28 AC 20 ms
5,504 KB
testcase_29 AC 46 ms
8,064 KB
testcase_30 AC 7 ms
5,376 KB
testcase_31 AC 37 ms
7,296 KB
testcase_32 AC 47 ms
8,320 KB
testcase_33 AC 140 ms
13,184 KB
testcase_34 AC 126 ms
13,184 KB
testcase_35 AC 123 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#define int long long
using namespace std;

int n, l;
bool isPrime[10000001];

signed main() {
	int i, j;
	
	cin >> n >> l;
	
	for (i = 2; i <= l; i++) {
		isPrime[i] = true;
	}
	for (i = 2; i <= l; i++) {
		if (isPrime[i]) {
			for (j = i * 2; j <= l; j += i) {
				isPrime[j] = false;
			}
		}
	}
	
	int ans = 0;
	for (i = 2; i <= l; i++) {
		if (!isPrime[i]) continue;
		
		int e = i * (n - 1);	//位置0を始点とした場合の終点e
		if (e > l) continue;
		
		ans += l - e + 1;
	}
	cout << ans << endl;
	return 0;
}
0