結果
問題 | No.407 鴨等素数間隔列の数え上げ |
ユーザー | anta |
提出日時 | 2016-08-05 22:35:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 30 ms / 1,000 ms |
コード長 | 1,845 bytes |
コンパイル時間 | 1,600 ms |
コンパイル使用メモリ | 170,988 KB |
実行使用メモリ | 24,564 KB |
最終ジャッジ日時 | 2024-12-15 19:31:55 |
合計ジャッジ時間 | 2,782 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 3 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | AC | 6 ms
6,820 KB |
testcase_20 | AC | 10 ms
9,884 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,820 KB |
testcase_24 | AC | 2 ms
6,820 KB |
testcase_25 | AC | 15 ms
14,084 KB |
testcase_26 | AC | 2 ms
6,820 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,820 KB |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 2 ms
6,816 KB |
testcase_31 | AC | 2 ms
6,820 KB |
testcase_32 | AC | 9 ms
8,732 KB |
testcase_33 | AC | 30 ms
24,564 KB |
testcase_34 | AC | 30 ms
24,400 KB |
testcase_35 | AC | 13 ms
12,956 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i)) #define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i)) static const int INF = 0x3f3f3f3f; static const long long INFL = 0x3f3f3f3f3f3f3f3fLL; typedef vector<int> vi; typedef pair<int, int> pii; typedef vector<pair<int, int> > vpii; typedef long long ll; template<typename T, typename U> static void amin(T &x, U y) { if(y < x) x = y; } template<typename T, typename U> static void amax(T &x, U y) { if(x < y) x = y; } vector<int> primes; vector<int> smallestPrimeFactor; void linearSieve(int n) { if(n < 1) n = 1; if((int)smallestPrimeFactor.size() >= n + 1) return; int primePiBound = n < 20 ? n - 1 : (int)(n / (log(n * 1.) - 2) + 2); primes.assign(primePiBound + 1, numeric_limits<int>::max()); int P = 0; smallestPrimeFactor.assign(n + 1, 0); smallestPrimeFactor[1] = 1; int n2 = n / 2, n3 = n / 3, n5 = n / 5; if(n >= 2) primes[P ++] = 2; if(n >= 3) primes[P ++] = 3; for(int q = 2; q <= n; q += 2) smallestPrimeFactor[q] = 2; for(int q = 3; q <= n; q += 6) smallestPrimeFactor[q] = 3; for(int q = 5; q <= n5; q += 2) { if(smallestPrimeFactor[q] == 0) primes[P ++] = smallestPrimeFactor[q] = q; int bound = smallestPrimeFactor[q]; for(int i = 2; ; ++ i) { int p = primes[i]; if(p > bound) break; int pq = p * q; if(pq > n) break; smallestPrimeFactor[pq] = p; } } for(int q = (n5 + 1) | 1; q <= n; q += 2) { if(smallestPrimeFactor[q] == 0) primes[P ++] = smallestPrimeFactor[q] = q; } primes.resize(P); } int main() { int N; int L; while(~scanf("%d%d", &N, &L)) { linearSieve(L / (N - 1) + 1); ll ans = 0; for(int d : primes) { ans += max(0, L + 1 - d * (N - 1)); } printf("%lld\n", ans); } return 0; }