結果

問題 No.75 回数の期待値の問題
ユーザー masamasa
提出日時 2015-02-18 23:46:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,546 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 74,124 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-23 21:16:27
合計ジャッジ時間 31,309 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,535 ms
6,812 KB
testcase_01 AC 1,545 ms
6,940 KB
testcase_02 AC 1,546 ms
6,940 KB
testcase_03 AC 1,437 ms
6,944 KB
testcase_04 AC 1,538 ms
6,940 KB
testcase_05 AC 1,533 ms
6,940 KB
testcase_06 AC 1,529 ms
6,944 KB
testcase_07 AC 1,426 ms
6,940 KB
testcase_08 AC 1,421 ms
6,944 KB
testcase_09 AC 1,411 ms
6,940 KB
testcase_10 AC 1,392 ms
6,944 KB
testcase_11 AC 1,391 ms
6,944 KB
testcase_12 AC 1,374 ms
6,944 KB
testcase_13 AC 1,365 ms
6,940 KB
testcase_14 AC 1,356 ms
6,940 KB
testcase_15 AC 1,340 ms
6,944 KB
testcase_16 AC 1,287 ms
6,940 KB
testcase_17 AC 1,280 ms
6,940 KB
testcase_18 AC 1,282 ms
6,948 KB
testcase_19 AC 1,278 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

const int MAX_ROLL = 1e8;

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

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


	int sum = 0;
	int start = 0;
	long long success = 0;
	for (int i = 0; i < MAX_ROLL; i++) {
		sum += dice(mt);

		if (sum == k) {
			success++;
			sum = 0;
		} else if (sum > k) {
			sum = 0;
		}
	}

	double ans = success != 0 ? 1.0 * MAX_ROLL / success : MAX_ROLL;
	printf("%.6f\n", ans);

	return 0;
}
0