結果

問題 No.58 イカサマなサイコロ
ユーザー kou6839kou6839
提出日時 2015-01-02 02:13:30
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 607 bytes
コンパイル時間 2,511 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-06-13 01:12:21
合計ジャッジ時間 7,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 216 ms
54,184 KB
testcase_01 AC 597 ms
54,396 KB
testcase_02 AC 202 ms
53,444 KB
testcase_03 AC 159 ms
53,160 KB
testcase_04 AC 372 ms
54,028 KB
testcase_05 AC 404 ms
53,224 KB
testcase_06 AC 477 ms
53,544 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 472 ms
53,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

class Main {
	public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int win=0;
        for(int i=0;i<800000;i++){
        	int ji=0;
        	int ta=0;
        	for(int j=0;j<a;j++){
        		ji+=Math.random()*6+1;
        	}
        	for(int j=0;j<b;j++){
        		ta+=Math.random()*3+4;
        	}
        	for(int j=0;j<a-b;j++){
        		ta+=Math.random()*6+1;
        	}
        	if(ta>ji) win++;
        }
        System.out.println(1.0*win/800000);
    }
}
0