結果

問題 No.65 回数の期待値の練習
ユーザー DadarithmDadarithm
提出日時 2015-10-11 11:19:35
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 53,844 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-21 06:23:08
合計ジャッジ時間 2,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
5,248 KB
testcase_01 AC 23 ms
5,376 KB
testcase_02 AC 28 ms
5,376 KB
testcase_03 AC 49 ms
5,376 KB
testcase_04 AC 32 ms
5,376 KB
testcase_05 AC 36 ms
5,376 KB
testcase_06 AC 42 ms
5,376 KB
testcase_07 AC 52 ms
5,376 KB
testcase_08 AC 61 ms
5,376 KB
testcase_09 AC 63 ms
5,376 KB
testcase_10 AC 67 ms
5,376 KB
testcase_11 AC 73 ms
5,376 KB
testcase_12 AC 79 ms
5,376 KB
testcase_13 AC 82 ms
5,376 KB
testcase_14 AC 88 ms
5,376 KB
testcase_15 AC 94 ms
5,376 KB
testcase_16 AC 98 ms
5,376 KB
testcase_17 AC 102 ms
5,376 KB
testcase_18 AC 109 ms
5,376 KB
testcase_19 AC 114 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdlib>
using namespace std;

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

	int tmp = 0, a = 0, b = 0;
	while (b <= 1000000)
	{
		tmp += rand() % 6 + 1;
		++a;
		if (K <= tmp)
		{
			++b;
			tmp = 0;
		}
	}

	cout << (double)a / (double)b << endl;

	return 0;
}
0