結果

問題 No.58 イカサマなサイコロ
ユーザー リチウムリチウム
提出日時 2014-11-05 00:09:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 373 ms / 5,000 ms
コード長 489 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 75,200 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-06-09 19:06:53
合計ジャッジ時間 5,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
54,112 KB
testcase_01 AC 373 ms
54,012 KB
testcase_02 AC 190 ms
53,928 KB
testcase_03 AC 164 ms
54,224 KB
testcase_04 AC 281 ms
54,036 KB
testcase_05 AC 294 ms
53,896 KB
testcase_06 AC 351 ms
53,788 KB
testcase_07 AC 195 ms
54,320 KB
testcase_08 AC 254 ms
54,020 KB
testcase_09 AC 349 ms
54,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		Random rnd = new Random();
		int n=sc.nextInt();
		int k=sc.nextInt();
		double v=0;
		for(int i=0;i<1000000;i++){
			int sumt=0;
			int sumj=0;
			for(int j=0;j<n;j++){
				if(j<k)sumt+=rnd.nextInt(3)+4;
				else sumt+=rnd.nextInt(6)+1;
				sumj+=rnd.nextInt(6)+1;
			}
			if(sumt>sumj)v++;
			
		}
		System.out.println(v/1000000);
		
		}
}
0