結果

問題 No.75 回数の期待値の問題
ユーザー kou6839kou6839
提出日時 2015-03-13 00:55:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,306 ms / 5,000 ms
コード長 461 bytes
コンパイル時間 1,681 ms
コンパイル使用メモリ 75,360 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-06-28 22:46:25
合計ジャッジ時間 9,582 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
52,968 KB
testcase_01 AC 150 ms
53,296 KB
testcase_02 AC 162 ms
54,136 KB
testcase_03 AC 183 ms
53,916 KB
testcase_04 AC 148 ms
52,964 KB
testcase_05 AC 171 ms
54,192 KB
testcase_06 AC 160 ms
54,380 KB
testcase_07 AC 182 ms
52,968 KB
testcase_08 AC 181 ms
41,248 KB
testcase_09 AC 183 ms
41,336 KB
testcase_10 AC 203 ms
41,424 KB
testcase_11 AC 200 ms
41,576 KB
testcase_12 AC 205 ms
41,288 KB
testcase_13 AC 222 ms
41,060 KB
testcase_14 AC 217 ms
41,384 KB
testcase_15 AC 245 ms
41,468 KB
testcase_16 AC 622 ms
41,520 KB
testcase_17 AC 1,030 ms
41,628 KB
testcase_18 AC 1,223 ms
41,252 KB
testcase_19 AC 1,306 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.beans.IntrospectionException;
import java.util.*;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int ans=0;
		Random random = new Random();
		for(int i=0;i<500000;i++){
			int count=0;
			int now=0;
			while(true){
				now+=(int)(random.nextInt(6))+1;
				count++;
				if(now==n) break;
				if(now>n) now=0;
			}
			ans+=count;
		}
		System.out.println(ans*1.0/500000);
	}
}
0