結果

問題 No.75 回数の期待値の問題
ユーザー kano_townkano_town
提出日時 2014-11-23 23:48:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,169 ms / 5,000 ms
コード長 433 bytes
コンパイル時間 2,802 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-06-10 21:47:40
合計ジャッジ時間 10,159 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,784 KB
testcase_01 AC 142 ms
41,632 KB
testcase_02 AC 138 ms
40,484 KB
testcase_03 AC 161 ms
40,440 KB
testcase_04 AC 141 ms
40,608 KB
testcase_05 AC 156 ms
41,480 KB
testcase_06 AC 158 ms
41,432 KB
testcase_07 AC 174 ms
41,400 KB
testcase_08 AC 170 ms
40,732 KB
testcase_09 AC 186 ms
41,340 KB
testcase_10 AC 189 ms
41,456 KB
testcase_11 AC 192 ms
40,480 KB
testcase_12 AC 207 ms
41,292 KB
testcase_13 AC 197 ms
40,436 KB
testcase_14 AC 211 ms
40,308 KB
testcase_15 AC 248 ms
41,696 KB
testcase_16 AC 561 ms
40,256 KB
testcase_17 AC 933 ms
41,292 KB
testcase_18 AC 1,087 ms
41,120 KB
testcase_19 AC 1,169 ms
41,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder75 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int K = sc.nextInt();

		int num;
		double count = 0, sum = 0;
		for (int i = 0; i < 800000; i++) {
			num = 0;
			while (num < K) {
				num += (int) (Math.random() * 6 + 1);
				count++;
			}
			if (num == K) {
				sum++;
			}
		}
		System.out.println(count / sum);
	}
}
0