結果

問題 No.58 イカサマなサイコロ
ユーザー kano_townkano_town
提出日時 2014-11-23 23:07:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,038 ms / 5,000 ms
コード長 568 bytes
コンパイル時間 2,818 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-06-10 21:41:09
合計ジャッジ時間 9,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
40,684 KB
testcase_01 AC 1,038 ms
41,480 KB
testcase_02 AC 321 ms
41,440 KB
testcase_03 AC 223 ms
41,656 KB
testcase_04 AC 680 ms
41,572 KB
testcase_05 AC 783 ms
41,264 KB
testcase_06 AC 969 ms
41,388 KB
testcase_07 AC 314 ms
41,496 KB
testcase_08 AC 492 ms
41,132 KB
testcase_09 AC 952 ms
41,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder58 {

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

		int taro = 0, jiro = 0;
		int taroWin = 0;

		for (int i = 0; i < 2000000; i++) {
			taro = 0;
			jiro = 0;
			for (int j = 0; j < N; j++) {
				taro += j < K ? (int) (Math.random() * 3 + 4) : (int) (Math.random() * 6 + 1);
				jiro += (int) (Math.random() * 6 + 1);
			}
			if (taro > jiro) taroWin++;
		}
		System.out.println(taroWin / 2000000.0);

	}
}
0