結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー ldsybldsyb
提出日時 2016-08-06 00:11:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 375 bytes
コンパイル時間 835 ms
コンパイル使用メモリ 65,292 KB
実行使用メモリ 13,200 KB
最終ジャッジ日時 2024-05-09 10:27:52
合計ジャッジ時間 5,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
13,044 KB
testcase_01 AC 83 ms
13,056 KB
testcase_02 AC 84 ms
13,184 KB
testcase_03 AC 85 ms
13,184 KB
testcase_04 AC 83 ms
13,184 KB
testcase_05 AC 85 ms
13,176 KB
testcase_06 AC 90 ms
13,184 KB
testcase_07 AC 81 ms
13,184 KB
testcase_08 AC 128 ms
13,184 KB
testcase_09 AC 93 ms
13,148 KB
testcase_10 AC 81 ms
13,056 KB
testcase_11 AC 81 ms
13,188 KB
testcase_12 AC 92 ms
13,056 KB
testcase_13 AC 87 ms
13,156 KB
testcase_14 AC 82 ms
13,084 KB
testcase_15 AC 91 ms
13,200 KB
testcase_16 AC 91 ms
13,184 KB
testcase_17 AC 91 ms
13,184 KB
testcase_18 AC 92 ms
13,184 KB
testcase_19 AC 85 ms
13,184 KB
testcase_20 AC 91 ms
13,184 KB
testcase_21 AC 97 ms
13,184 KB
testcase_22 AC 97 ms
13,184 KB
testcase_23 AC 100 ms
13,056 KB
testcase_24 AC 98 ms
13,184 KB
testcase_25 AC 91 ms
13,184 KB
testcase_26 AC 83 ms
13,056 KB
testcase_27 AC 92 ms
13,184 KB
testcase_28 AC 93 ms
13,184 KB
testcase_29 AC 81 ms
13,056 KB
testcase_30 AC 94 ms
13,184 KB
testcase_31 AC 118 ms
13,156 KB
testcase_32 AC 106 ms
13,056 KB
testcase_33 AC 81 ms
13,180 KB
testcase_34 AC 84 ms
13,184 KB
testcase_35 AC 84 ms
13,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

bool prime[int(1e7) + 1];

void makeprime(){for(int i = 2;i * i <= 1e7 + 1;i++) if(!prime[i]) for(int j = 2 * i;j < int(1e7) + 1;j += i) prime[j] = true;}

int main(){
	makeprime();
	long long ans = 0,n,l;
	cin >> n >> l;
	for(int i = 2;i < int(1e7) + 1;i++) if(!prime[i]) ans += max(0ll,l - (n - 1) * i + 1);
	cout << ans << endl;
}
0