結果
問題 | No.144 エラトステネスのざる |
ユーザー | junkai |
提出日時 | 2020-11-25 23:45:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 550 bytes |
コンパイル時間 | 1,465 ms |
コンパイル使用メモリ | 168,188 KB |
実行使用メモリ | 10,652 KB |
最終ジャッジ日時 | 2024-07-23 19:33:25 |
合計ジャッジ時間 | 19,679 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using P = pair<ll, ll>; #define rep(i, n) for (int i = 0; i < (int)(n); i++) int main() { int n; double p; cin >> n >> p; double ans = 0; for(int i = 2; i <= n; i++) { int cnt = 0; for(int j = 2; j * j <= i; j++) { if(i % j == 0) { cnt++; if(i / j != j) cnt++; } } ans += pow((1-p), cnt); } cout << fixed << setprecision(10) << ans << endl; }