結果

問題 No.75 回数の期待値の問題
ユーザー kou6839kou6839
提出日時 2015-03-13 00:47:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,597 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 2,067 ms
コンパイル使用メモリ 73,940 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-06-28 22:46:11
合計ジャッジ時間 15,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 217 ms
41,480 KB
testcase_01 AC 217 ms
41,036 KB
testcase_02 AC 227 ms
41,612 KB
testcase_03 AC 273 ms
40,940 KB
testcase_04 AC 228 ms
41,400 KB
testcase_05 AC 220 ms
41,404 KB
testcase_06 AC 225 ms
41,556 KB
testcase_07 AC 284 ms
41,440 KB
testcase_08 AC 288 ms
41,316 KB
testcase_09 AC 287 ms
41,428 KB
testcase_10 AC 294 ms
41,164 KB
testcase_11 AC 309 ms
41,212 KB
testcase_12 AC 347 ms
41,268 KB
testcase_13 AC 345 ms
41,336 KB
testcase_14 AC 363 ms
41,288 KB
testcase_15 AC 404 ms
40,584 KB
testcase_16 AC 1,232 ms
40,356 KB
testcase_17 AC 2,041 ms
41,300 KB
testcase_18 AC 2,444 ms
41,176 KB
testcase_19 AC 2,597 ms
41,104 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<500000;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/500000);
	}
}
0