結果

問題 No.58 イカサマなサイコロ
ユーザー tonyu0tonyu0
提出日時 2020-03-26 11:14:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 5,000 ms
コード長 544 bytes
コンパイル時間 1,002 ms
コンパイル使用メモリ 98,716 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 12:15:08
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
6,816 KB
testcase_01 AC 240 ms
6,944 KB
testcase_02 AC 50 ms
6,944 KB
testcase_03 AC 28 ms
6,944 KB
testcase_04 AC 140 ms
6,940 KB
testcase_05 AC 178 ms
6,940 KB
testcase_06 AC 206 ms
6,944 KB
testcase_07 AC 49 ms
6,944 KB
testcase_08 AC 100 ms
6,940 KB
testcase_09 AC 224 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <random>
using namespace std;
random_device rd;
mt19937 mt(rd());

int n, k;
uniform_int_distribution<> rand1(1, 6);
uniform_int_distribution<> rand2(4, 6);

int main() {
  cin >> n >> k;

  int win = 0;
  for (int i = 0; i < 1000000; ++i) {
    int taro = 0, jiro = 0;
    for (int j = 0; j < n; ++j) jiro += rand1(mt);
    for (int j = 0; j < n - k; ++j) taro += rand1(mt);
    for (int j = 0; j < k; ++j) taro += rand2(mt);
    win += (taro > jiro);
  }
  cout << (double)win / 1000000.0 << '\n';
  return 0;
}

0