結果

問題 No.75 回数の期待値の問題
ユーザー リチウムリチウム
提出日時 2014-11-23 23:26:56
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 482 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-06-10 21:42:01
合計ジャッジ時間 28,409 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
40,984 KB
testcase_01 AC 335 ms
41,312 KB
testcase_02 AC 333 ms
40,452 KB
testcase_03 AC 452 ms
41,448 KB
testcase_04 AC 345 ms
41,132 KB
testcase_05 AC 339 ms
41,148 KB
testcase_06 AC 330 ms
41,180 KB
testcase_07 AC 457 ms
41,396 KB
testcase_08 AC 471 ms
41,176 KB
testcase_09 AC 483 ms
41,224 KB
testcase_10 AC 517 ms
41,664 KB
testcase_11 AC 546 ms
41,488 KB
testcase_12 AC 588 ms
41,296 KB
testcase_13 AC 604 ms
41,200 KB
testcase_14 AC 628 ms
41,204 KB
testcase_15 AC 763 ms
41,292 KB
testcase_16 AC 2,449 ms
41,180 KB
testcase_17 AC 4,320 ms
41,376 KB
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	
  public static void main(String[] args) {
	  Scanner sc=new Scanner(System.in);
	  int k=sc.nextInt();
	  Random r=new Random();
	  int ans=0;
	  int i=0;
	  while(i<2000000){
		  int sum=0;
		  int t=0;
		  while(true){
		  int n=r.nextInt(6)+1;
		  t++;
		  sum+=n;
		  if(sum>k)sum=0;
		  else if(sum==k)break;
		  }
		  ans+=t;
		  i++;
	  }
	  System.out.println((double)ans/2000000);
	  	  
  }
}
  
 
0