結果
問題 | No.407 鴨等素数間隔列の数え上げ |
ユーザー | kpinkcat |
提出日時 | 2023-12-11 03:45:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 790 bytes |
コンパイル時間 | 1,141 ms |
コンパイル使用メモリ | 108,496 KB |
実行使用メモリ | 46,580 KB |
最終ジャッジ日時 | 2024-09-27 04:19:39 |
合計ジャッジ時間 | 5,724 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 36 ms
7,712 KB |
testcase_20 | AC | 151 ms
16,040 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 299 ms
24,876 KB |
testcase_26 | RE | - |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | RE | - |
testcase_32 | AC | 75 ms
10,112 KB |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | AC | 144 ms
16,096 KB |
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<cctype> #include<set> #include<bitset> #include<math.h> #include<map> #include<queue> #include<iomanip> using namespace std; using ll = long long; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int n, l, max = 0; ll ans = 0; cin >> n >> l; int MAX = (l+1)/(n-2) + 1; vector<int> p(MAX, 1), primes; p[0] = 0; p[1] = 0; for (int i = 2; i <= MAX; i++){ if (p[i]) primes.push_back(i); for (int j = i*2; j <= MAX; j += i){ p[j] = 0; } } if (!primes.size()) primes.push_back(MAX); for (int i = 0; primes[i]*(n-1) <= l; i++){ max = primes[i]*(n-1); ans += (l - max + 1); } cout << ans << endl; }