結果

問題 No.813 ユキちゃんの冒険
ユーザー ojisan_ITojisan_IT
提出日時 2019-04-12 21:59:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,385 bytes
コンパイル時間 1,734 ms
コンパイル使用メモリ 165,772 KB
実行使用メモリ 7,804 KB
最終ジャッジ日時 2023-08-30 13:25:31
合計ジャッジ時間 6,825 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
4,384 KB
testcase_01 WA -
testcase_02 AC 116 ms
4,376 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
template<class T> using vt = vector<T>;
template<class T> using vvt = vector<vt<T>>;
template<class T> using ttt = tuple<T,T>;
using tii = tuple<int,int>;
using tiii = tuple<int,int,int>;
using vi = vector<int>;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define pb push_back
#define ALL(a) (a).begin(),(a).end()
#define FST first
#define SEC second
#define DEB cerr<<"!"<<endl
#define SHOW(a,b) cerr<<(a)<<" "<<(b)<<endl
#define DIV int(1e9+7)
const int INF = (INT_MAX/2);
const ll LLINF = (LLONG_MAX/2);
const double eps = 1e-8;
//const double PI = M_PI;  
inline ll pow(ll x,ll n,ll m){ll r=1;while(n>0){if((n&1)==1)r=r*x%m;x=x*x%m;n>>=1;}return r%m;}
inline ll lcm(ll d1, ll d2){return d1 / __gcd(d1, d2) * d2;}

/* Coding space */
// TLE
std::random_device seed_gen;
std::default_random_engine engine(seed_gen());
std::uniform_real_distribution<long double> dist(0.0, 1.0);
int main(){
  int n; cin >> n;
  long double p,q; cin >> p >> q;
  long double ans = 0.0;
  
  const ll X = 5000000;
  rep(i,X){
    int now = 1;
    while(1){
      long double t = dist(engine);
      //cerr << t << endl;
      if(t < p)  now--;
      else if(t < p + q)  now++;
      else  break;
      if(now == 0){ans += 1.0; break;}
      if(now > n)  break;
    }
  }
  cout <<fixed << setprecision(10) <<  ans / (1.0*X) << endl;
}
0