結果

問題 No.75 回数の期待値の問題
ユーザー nmnmnmnmnmnmnmnmnmnmnmnmnmnm
提出日時 2014-11-14 22:44:02
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,268 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 85,960 KB
実行使用メモリ 7,676 KB
最終ジャッジ日時 2023-08-30 03:42:28
合計ジャッジ時間 36,301 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,189 ms
4,376 KB
testcase_01 AC 1,187 ms
4,376 KB
testcase_02 AC 1,188 ms
4,376 KB
testcase_03 AC 1,615 ms
4,376 KB
testcase_04 AC 1,188 ms
4,376 KB
testcase_05 AC 1,187 ms
4,380 KB
testcase_06 AC 1,189 ms
4,376 KB
testcase_07 AC 1,659 ms
4,376 KB
testcase_08 AC 1,711 ms
4,380 KB
testcase_09 AC 1,782 ms
4,380 KB
testcase_10 AC 1,869 ms
4,376 KB
testcase_11 AC 1,992 ms
4,380 KB
testcase_12 AC 2,166 ms
4,376 KB
testcase_13 AC 2,240 ms
4,376 KB
testcase_14 AC 2,336 ms
4,380 KB
testcase_15 AC 2,874 ms
4,376 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cfloat>
#include <climits>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <functional>
#include <iostream>
#include <map>
#include <memory>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>
 
using namespace std;
 
#define sz size()
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define all(c) (c).begin(), (c).end()
#define rep(i,a,b) for(int i=(a);i<(b);++i)
#define clr(a, b) memset((a), (b) ,sizeof(a))
 
#define MOD 1000000009

unsigned int xor128(void) { 
  static unsigned int x = 123456789;
  static unsigned int y = 362436069;
  static unsigned int z = 521288629;
  static unsigned int w = 88675123; 
  unsigned int t;
 
  t = x ^ (x << 11);
  x = y; y = z; z = w;
  return w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)); 
}

int main(){
  int k;
  cin>>k;
  int total = 0;
  rep(i,0,40000000){
    int a = 0;
    int c = 0;
    for(;;){
      a+=xor128()%6+1;
      c++;
      if(a==k)break;
      if(a>k)a=0;
    }
    total+=c;
  }
  cout << 1.*total/40000000 << endl;
  return 0;
}

/*
モンテカルロ法
*/
0