結果

問題 No.58 イカサマなサイコロ
ユーザー GrenacheGrenache
提出日時 2015-11-03 20:35:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,727 ms / 5,000 ms
コード長 686 bytes
コンパイル時間 3,469 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-09-13 12:13:44
合計ジャッジ時間 19,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 668 ms
54,280 KB
testcase_01 AC 2,727 ms
54,388 KB
testcase_02 AC 670 ms
54,432 KB
testcase_03 AC 415 ms
54,264 KB
testcase_04 AC 1,694 ms
54,360 KB
testcase_05 AC 1,983 ms
54,176 KB
testcase_06 AC 2,464 ms
54,240 KB
testcase_07 AC 665 ms
54,056 KB
testcase_08 AC 1,176 ms
54,328 KB
testcase_09 AC 2,480 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder58 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int k = sc.nextInt();

        int win = 0;
        int m = 5000000;
        for (int i = 0; i < m; i++) {
        	if (sum(n, k) > sum(n, 0)) {
        		win++;
        	}
        }

		System.out.printf("%.4f\n", (double)win / m);
        
        sc.close();
    }

	private static int sum(int n, int k) {
		int sum = 0;
		for (int i = 0; i < n; i++) {
			if (i < k) {
				sum += (int)(Math.random() * 3) + 4;
			} else {
				sum += (int)(Math.random() * 6) + 1;
			}
		}
		
		return sum;
	}
}
0