結果

問題 No.58 イカサマなサイコロ
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-16 09:29:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 486 ms / 5,000 ms
コード長 629 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 56,996 KB
最終ジャッジ日時 2024-10-01 06:38:24
合計ジャッジ時間 6,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
56,632 KB
testcase_01 AC 486 ms
56,996 KB
testcase_02 AC 250 ms
56,956 KB
testcase_03 AC 220 ms
56,920 KB
testcase_04 AC 366 ms
56,704 KB
testcase_05 AC 394 ms
56,792 KB
testcase_06 AC 456 ms
56,840 KB
testcase_07 AC 256 ms
56,744 KB
testcase_08 AC 338 ms
56,596 KB
testcase_09 AC 450 ms
56,928 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();
    double win = 0;
    for(int i = 0; i < 1000000; i++) {
      int p1 = 0;
      int p2 = 0;
      Random rnd = new Random();
      for(int j = 0; j < N; j++) {
        p1 += (rnd.nextInt(6) + 1);
      }
      for(int j = 0; j < K; j++) {
        p2 += (rnd.nextInt(3) + 4);
      }
      for(int j = 0; j < N - K; j++) {
        p2 += (rnd.nextInt(6) + 1);
      }
      if(p2 > p1) win++;
    }
    System.out.println(win / (double)1000000);
  }
}
0