結果
問題 | No.144 エラトステネスのざる |
ユーザー | kpinkcat |
提出日時 | 2023-10-31 02:45:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,328 bytes |
コンパイル時間 | 2,407 ms |
コンパイル使用メモリ | 210,960 KB |
実行使用メモリ | 26,164 KB |
最終ジャッジ日時 | 2024-09-25 17:29:31 |
合計ジャッジ時間 | 5,868 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,880 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <bits/stdc++.h> #include<iostream> #include<iomanip> #include<string> #include<algorithm> #include<vector> #include<set> #include<list> #include<queue> #include<math.h> #include<bitset> using ll = long long; using namespace std; vector<long long> divisor(long long n) { vector<long long> ret; for (long long i = 1; i * i <= n; i++) { if (n % i == 0) { ret.push_back(i); if (i * i != n) ret.push_back(n / i); } } sort(ret.begin(), ret.end()); return ret; } int main(){ int n; double p; cin >> n >> p; vector<ll> prime(n+1, 1), fac; vector<double> yprime(n+1); prime[0] = 0, prime[1] = 0; for (int i = 2; i*i <= n; i++){ if (prime[i]){ for (int j = i*i; j <= n; j += i){ prime[j] = 0; } } } for (ll i = 2; i <= n; i++){ int ex = 0; double tmp = 1.0; fac = divisor(i); if (prime[i]) yprime[i] = yprime[i-1] + 1.0; else { for (auto x : fac){ if ((x != 1) && x < i) ex++; } while (ex){ tmp *= (1-p); ex--; } yprime[i] = yprime[i-1] + tmp; } } cout << fixed << setprecision(7) << yprime[n] << endl; }