結果

問題 No.65 回数の期待値の練習
ユーザー リチウムリチウム
提出日時 2014-11-13 23:26:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 5,000 ms
コード長 347 bytes
コンパイル時間 3,112 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-06-10 02:41:35
合計ジャッジ時間 7,190 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,540 KB
testcase_01 AC 140 ms
41,184 KB
testcase_02 AC 135 ms
41,376 KB
testcase_03 AC 152 ms
41,784 KB
testcase_04 AC 146 ms
41,544 KB
testcase_05 AC 146 ms
41,480 KB
testcase_06 AC 151 ms
41,224 KB
testcase_07 AC 159 ms
41,692 KB
testcase_08 AC 169 ms
41,452 KB
testcase_09 AC 159 ms
41,344 KB
testcase_10 AC 163 ms
41,360 KB
testcase_11 AC 173 ms
41,408 KB
testcase_12 AC 169 ms
40,544 KB
testcase_13 AC 181 ms
41,604 KB
testcase_14 AC 181 ms
41,596 KB
testcase_15 AC 187 ms
41,300 KB
testcase_16 AC 188 ms
41,568 KB
testcase_17 AC 182 ms
40,608 KB
testcase_18 AC 195 ms
41,648 KB
testcase_19 AC 186 ms
40,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class ok{ 

public static void main(String args[]){
	Scanner sc=new Scanner(System.in);
	int k=sc.nextInt();
	Random r=new Random();
	int sum=0;
	int ans=0;
	for(int i=0;i<1000000;i++){
		sum=0;
	while(sum<k){
		sum+=r.nextInt(6)+1;
		ans++;
	}
	}
	System.out.println((double)ans/1000000);
	
	
	}
  }
0