結果
問題 | No.144 エラトステネスのざる |
ユーザー | nanophoto12 |
提出日時 | 2021-01-24 15:22:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 1,086 bytes |
コンパイル時間 | 2,252 ms |
コンパイル使用メモリ | 201,952 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-06-10 22:03:15 |
合計ジャッジ時間 | 3,366 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 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 | 48 ms
7,192 KB |
testcase_14 | AC | 48 ms
7,424 KB |
testcase_15 | AC | 48 ms
7,424 KB |
testcase_16 | AC | 48 ms
7,424 KB |
testcase_17 | AC | 47 ms
7,276 KB |
testcase_18 | AC | 52 ms
7,424 KB |
testcase_19 | AC | 48 ms
7,348 KB |
ソースコード
#include <bits/stdc++.h> #define M_PI 3.14159265358979323846 // pi using namespace std; typedef long long ll; typedef unsigned long long ull; typedef vector<ll> VI; typedef pair<ll, ll> P; typedef tuple<ll, ll, ll> t3; typedef tuple<ll, ll, ll, ll> t4; #define rep(a,n) for(ll a = 0;a < n;a++) #define repi(a,b,n) for(ll a = b;a < n;a++) #include <bits/stdc++.h> using namespace std; template<typename T> void chmax(T& reference, T value) { reference = max(reference, value); } template<typename T> void chmin(T& reference, T value) { reference = min(reference, value); } constexpr double mpow(double x, ll n) { double ans = 1; while (n != 0) { if (n & 1) ans = ans * x; x = x * x; n = n >> 1; } return ans; } int main() { ll n; double p; cin >> n >> p; vector<int> table(n + 1, 0); for (int i = 2; i <= n; i++) { for (int j = 1; i * j <= n; j++) { table[i * j]++; } } double ex = 0; for (int i = 2; i <= n; i++) { int c = table[i]; double q = mpow(1-p, c - 1); ex += q; } cout << setprecision(10) << fixed << ex << endl; return 0; }