結果
問題 | No.144 エラトステネスのざる |
ユーザー | ともき |
提出日時 | 2015-10-12 03:20:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,852 bytes |
コンパイル時間 | 1,040 ms |
コンパイル使用メモリ | 117,456 KB |
実行使用メモリ | 18,252 KB |
最終ジャッジ日時 | 2024-07-21 07:14:18 |
合計ジャッジ時間 | 4,793 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 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 | 8 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 7 ms
5,376 KB |
testcase_09 | AC | 7 ms
5,376 KB |
testcase_10 | AC | 7 ms
5,376 KB |
testcase_11 | AC | 8 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <valarray> #include <map> #include <set> #include <list> #include <queue> #include <stack> #include <bitset> #include <utility> #include <numeric> #include <algorithm> #include <functional> #include <complex> #include <string> #include <sstream> #include <cstdio> #include <cstdlib> #include <cctype> #include <cstring> #include <cassert> #include <unordered_set> #include <unordered_map> #include <random> #include <thread> #include <chrono> using namespace std; #define int long long #define let const auto #define var auto #define all(c) c.begin(), c.end() #define repeat(i, n) for (int i = 0; i < static_cast<int>(n); i++) #define debug(x) #x << "=" << (x) #ifdef DEBUG #define dump(x) std::cerr << debug(x) << " (L:" << __LINE__ << ")" << std::endl #else #define dump(x) #endif typedef complex<double> point; template <typename T> ostream &operator<<(ostream &os, const vector<T> &v) { os << "{"; for(auto it = v.begin(); it != v.end(); ++it){ if(it != v.begin()){ os << ","; } os << *it; } return os << "}"; } template<typename T> void isort(std::vector<T>& v, std::function<bool(T,T)> comp=less<T>()){ sort(v.begin(), v.end(), comp); } template<typename T> std::vector<T> sort(std::vector<T> v, std::function<bool(T,T)> comp=less<T>()){ isort(v); return v; } template<typename T1, typename T2> std::vector<T2> rmap(const std::vector<T1>& v, std::function<T2(T1)> f){ std::vector<T2> t; t.reserve(v.size()); for(const auto& i: v) t.push_back(f(i)); return t; } std::vector<std::string> split(std::string str, char delim){ std::vector<std::string> res; size_t current = 0, found; while((found = str.find_first_of(delim, current)) != std::string::npos){ res.push_back(std::string(str, current, found - current)); current = found + 1; } res.push_back(std::string(str, current, str.size() - current)); return res; } string join(const std::vector<string>& v, string delim){ string ret = ""; for(auto it = v.begin(); it != v.end(); ++it){ if(it != v.begin()){ ret += delim; } ret += *it; } return ret; } double solve(int n, double p){ vector<double> is_prime(n+1, 1.0); is_prime[0] = 0.0; is_prime[1] = 0.0; double ret = 0; for(int i=2;i<=n;i++){ ret += is_prime[i]; for(int k=2; k*i <= n; k++){ is_prime[k*i] *= (1-p); } } for(int i=0;i<=n;i++){ cerr << i << " -> " << is_prime[i] << endl; } return ret; } signed main() { ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(10); int n; double p; cin >> n >> p; auto ret = solve(n, p); cout << ret << endl; return 0; }