結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,452 KB
testcase_01 AC 136 ms
40,436 KB
testcase_02 AC 139 ms
40,144 KB
testcase_03 AC 185 ms
41,308 KB
testcase_04 AC 155 ms
40,440 KB
testcase_05 AC 168 ms
41,464 KB
testcase_06 AC 160 ms
40,216 KB
testcase_07 AC 180 ms
40,492 KB
testcase_08 AC 197 ms
40,656 KB
testcase_09 AC 201 ms
41,600 KB
testcase_10 AC 209 ms
41,272 KB
testcase_11 AC 205 ms
40,624 KB
testcase_12 AC 215 ms
40,652 KB
testcase_13 AC 227 ms
40,492 KB
testcase_14 AC 226 ms
40,464 KB
testcase_15 AC 259 ms
40,476 KB
testcase_16 AC 688 ms
41,188 KB
testcase_17 AC 1,131 ms
41,288 KB
testcase_18 AC 1,336 ms
41,068 KB
testcase_19 AC 1,423 ms
41,128 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 < 1000000; i++) {
			num = 0;
			while (num < K) {
				num += (int) (Math.random() * 6 + 1);
				count++;
			}
			if (num == K) {
				sum ++;
			}
		}
		System.out.println(count  / sum );

	}

}
0