結果

問題 No.65 回数の期待値の練習
ユーザー masamasa
提出日時 2015-02-13 21:06:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 896 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 753 ms
コンパイル使用メモリ 75,664 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 19:51:11
合計ジャッジ時間 12,540 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
6,812 KB
testcase_01 AC 176 ms
6,944 KB
testcase_02 AC 236 ms
6,940 KB
testcase_03 AC 406 ms
6,940 KB
testcase_04 AC 294 ms
6,944 KB
testcase_05 AC 323 ms
6,944 KB
testcase_06 AC 358 ms
6,944 KB
testcase_07 AC 455 ms
6,944 KB
testcase_08 AC 493 ms
6,940 KB
testcase_09 AC 527 ms
6,940 KB
testcase_10 AC 570 ms
6,940 KB
testcase_11 AC 598 ms
6,940 KB
testcase_12 AC 643 ms
6,940 KB
testcase_13 AC 676 ms
6,940 KB
testcase_14 AC 714 ms
6,944 KB
testcase_15 AC 743 ms
6,940 KB
testcase_16 AC 788 ms
6,944 KB
testcase_17 AC 825 ms
6,940 KB
testcase_18 AC 860 ms
6,944 KB
testcase_19 AC 896 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>
#include <random>

using namespace std;

const int max_play = 1e7;

int main() {
	int k;
	cin >> k;

	int seed = 0;
	mt19937 mt(seed);
	uniform_int_distribution<> dice(1, 6);

	vector<int> count(21, 0);
	int sum, roll;
	int play = 0;
	while (play < max_play) {
		sum = 0;
		roll = 0;
		while (sum < k) {
			sum += dice(mt);
			roll++;
		}
		count[roll]++;
		play++;
	}

	int total  = 0;
	for (int i = 0; i < count.size(); i++) {
		total += i * count[i];
		// cout << count[i] << endl;
	}

	double ans = 1.0 * total / max_play;
	printf("%.6f\n", ans);

	return 0;
}
0