結果
問題 | No.75 回数の期待値の問題 |
ユーザー | nmnmnmnmnmnmnm |
提出日時 | 2014-11-08 23:37:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 4,417 ms / 5,000 ms |
コード長 | 1,268 bytes |
コンパイル時間 | 787 ms |
コンパイル使用メモリ | 88,540 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 01:50:33 |
合計ジャッジ時間 | 21,241 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 248 ms
5,248 KB |
testcase_01 | AC | 249 ms
5,376 KB |
testcase_02 | AC | 248 ms
5,376 KB |
testcase_03 | AC | 333 ms
5,376 KB |
testcase_04 | AC | 251 ms
5,376 KB |
testcase_05 | AC | 257 ms
5,376 KB |
testcase_06 | AC | 249 ms
5,376 KB |
testcase_07 | AC | 349 ms
5,376 KB |
testcase_08 | AC | 357 ms
5,376 KB |
testcase_09 | AC | 372 ms
5,376 KB |
testcase_10 | AC | 391 ms
5,376 KB |
testcase_11 | AC | 421 ms
5,376 KB |
testcase_12 | AC | 447 ms
5,376 KB |
testcase_13 | AC | 462 ms
5,376 KB |
testcase_14 | AC | 479 ms
5,376 KB |
testcase_15 | AC | 592 ms
5,376 KB |
testcase_16 | AC | 1,968 ms
5,376 KB |
testcase_17 | AC | 3,456 ms
5,376 KB |
testcase_18 | AC | 4,116 ms
5,376 KB |
testcase_19 | AC | 4,417 ms
5,376 KB |
ソースコード
#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,10000000){ 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/10000000 << endl; return 0; } /* モンテカルロ法 */