結果

問題 No.75 回数の期待値の問題
ユーザー kou6839kou6839
提出日時 2015-03-13 00:51:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,147 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 41,916 KB
最終ジャッジ日時 2024-06-28 22:45:32
合計ジャッジ時間 9,635 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
41,464 KB
testcase_01 AC 161 ms
41,568 KB
testcase_02 AC 165 ms
41,428 KB
testcase_03 AC 194 ms
41,428 KB
testcase_04 AC 172 ms
41,504 KB
testcase_05 AC 170 ms
41,560 KB
testcase_06 AC 160 ms
41,568 KB
testcase_07 AC 176 ms
40,624 KB
testcase_08 AC 180 ms
40,616 KB
testcase_09 AC 189 ms
40,576 KB
testcase_10 AC 204 ms
41,696 KB
testcase_11 AC 189 ms
40,576 KB
testcase_12 AC 210 ms
41,324 KB
testcase_13 AC 224 ms
41,556 KB
testcase_14 AC 204 ms
40,420 KB
testcase_15 AC 253 ms
41,392 KB
testcase_16 AC 562 ms
40,340 KB
testcase_17 AC 902 ms
40,688 KB
testcase_18 AC 1,074 ms
41,916 KB
testcase_19 AC 1,147 ms
41,612 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;
		for(int i=0;i<200000;i++){
			int count=0;
			int now=0;
			while(true){
				now+=(int)(Math.random()*6)+1;
				count++;
				if(now==n) break;
				if(now>n) now=0;
			}
			ans+=count;
		}
		System.out.println(ans*1.0/200000);
	}
}
0