結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
41,684 KB
testcase_01 AC 381 ms
54,256 KB
testcase_02 AC 191 ms
41,632 KB
testcase_03 WA -
testcase_04 AC 303 ms
54,740 KB
testcase_05 AC 300 ms
41,272 KB
testcase_06 WA -
testcase_07 AC 193 ms
41,396 KB
testcase_08 WA -
testcase_09 AC 347 ms
41,484 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<400000;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/400000);
    }
}
0