結果

問題 No.58 イカサマなサイコロ
ユーザー リチウムリチウム
提出日時 2014-11-05 00:08:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,295 ms / 5,000 ms
コード長 489 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 75,440 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-06-09 19:05:42
合計ジャッジ時間 10,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
53,928 KB
testcase_01 AC 1,295 ms
54,376 KB
testcase_02 AC 356 ms
53,728 KB
testcase_03 AC 261 ms
54,152 KB
testcase_04 AC 820 ms
54,328 KB
testcase_05 AC 929 ms
53,264 KB
testcase_06 AC 1,167 ms
54,352 KB
testcase_07 AC 375 ms
54,360 KB
testcase_08 AC 598 ms
54,044 KB
testcase_09 AC 1,148 ms
53,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		Random rnd = new Random();
		int n=sc.nextInt();
		int k=sc.nextInt();
		double v=0;
		for(int i=0;i<5000000;i++){
			int sumt=0;
			int sumj=0;
			for(int j=0;j<n;j++){
				if(j<k)sumt+=rnd.nextInt(3)+4;
				else sumt+=rnd.nextInt(6)+1;
				sumj+=rnd.nextInt(6)+1;
			}
			if(sumt>sumj)v++;
			
		}
		System.out.println(v/5000000);
		
		}
}
0