結果

問題 No.58 イカサマなサイコロ
ユーザー ninoinuininoinui
提出日時 2020-08-24 10:40:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 211 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 203,312 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 08:33:34
合計ジャッジ時間 3,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
6,816 KB
testcase_01 AC 211 ms
6,816 KB
testcase_02 AC 47 ms
6,820 KB
testcase_03 AC 30 ms
6,820 KB
testcase_04 AC 127 ms
6,816 KB
testcase_05 AC 146 ms
6,820 KB
testcase_06 AC 188 ms
6,816 KB
testcase_07 AC 51 ms
6,816 KB
testcase_08 AC 92 ms
6,820 KB
testcase_09 AC 181 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int N, K;
  cin >> N >> K;
  int win = 0;
  random_device rd;
  mt19937 mt(rd());
  for (int i = 1e6; i; i--) {
    int taro = 0;
    int jiro = 0;
    for (int i = 0; i < N; i++) {
      jiro += mt() % 6 + 1;
      if (i < K) taro += mt() % 3 + 4;
      else taro += mt() % 6 + 1;
    }
    if (taro > jiro) win++;
  }
  cout << fixed << setprecision(3) << win / 1e6 << "\n";
}
0