結果
問題 | No.813 ユキちゃんの冒険 |
ユーザー | risujiroh |
提出日時 | 2019-04-12 21:35:00 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 435 bytes |
コンパイル時間 | 1,569 ms |
コンパイル使用メモリ | 168,880 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-21 08:27:17 |
合計ジャッジ時間 | 2,472 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
ソースコード
#include <bits/stdc++.h> using namespace std; using lint = long long; template<class T = int> using V = vector<T>; template<class T = int> using VV = V< V<T> >; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; double p, q; cin >> p >> q; V<double> r(n + 1); for (int i = 0; i < n; ++i) { r[i + 1] = p + q * q * r[i] / (1 - p * r[i]); } cout << fixed << setprecision(15) << r[n] << '\n'; }