結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
53,280 KB
testcase_01 AC 477 ms
53,708 KB
testcase_02 AC 203 ms
54,296 KB
testcase_03 AC 167 ms
54,292 KB
testcase_04 AC 338 ms
54,352 KB
testcase_05 AC 360 ms
53,396 KB
testcase_06 AC 429 ms
53,296 KB
testcase_07 AC 190 ms
53,772 KB
testcase_08 AC 267 ms
54,232 KB
testcase_09 AC 433 ms
53,712 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<1500000;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/1500000);
		
		}
}
0