結果

問題 No.58 イカサマなサイコロ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 22:12:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,518 ms / 5,000 ms
コード長 841 bytes
コンパイル時間 2,645 ms
コンパイル使用メモリ 78,328 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-05-06 01:23:44
合計ジャッジ時間 11,735 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 408 ms
40,676 KB
testcase_01 AC 1,518 ms
40,536 KB
testcase_02 AC 412 ms
41,384 KB
testcase_03 AC 257 ms
40,616 KB
testcase_04 AC 961 ms
40,944 KB
testcase_05 AC 1,081 ms
41,180 KB
testcase_06 AC 1,379 ms
41,136 KB
testcase_07 AC 401 ms
41,236 KB
testcase_08 AC 773 ms
40,944 KB
testcase_09 AC 1,394 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int K = sc.nextInt();
        int c=0;
        int win=0;
        while(c<3000000){
            int taro=0;
            int jiro=0;
            for(int i=0; i<N; i++){
                int t=(int)(Math.random()*6)+1;
                taro+=t;
            }
            for(int i=0; i<N-K; i++){
                int t=(int)(Math.random()*6)+1;
                jiro+=t;
            }
            for(int i=0; i<K; i++){
                int t=(int)((Math.random()*3)+4);
                jiro+=t;
            }
            if(jiro>taro){
                win++;
            }
            c++;
        }
        double ans = (double)win/c;
        System.out.println(ans);
    }
}
0