結果

問題 No.58 イカサマなサイコロ
ユーザー alpha_virginisalpha_virginis
提出日時 2015-06-19 21:00:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,710 ms / 5,000 ms
コード長 496 bytes
コンパイル時間 1,370 ms
コンパイル使用メモリ 159,712 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 03:58:31
合計ジャッジ時間 21,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 734 ms
6,816 KB
testcase_01 AC 3,710 ms
6,944 KB
testcase_02 AC 736 ms
6,944 KB
testcase_03 AC 376 ms
6,940 KB
testcase_04 AC 2,194 ms
6,940 KB
testcase_05 AC 2,557 ms
6,944 KB
testcase_06 AC 3,261 ms
6,940 KB
testcase_07 AC 728 ms
6,944 KB
testcase_08 AC 1,448 ms
6,944 KB
testcase_09 AC 3,270 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int main() {

  int N, K;
  int win = 0;
  int times;
  int a, b;

  std::cin >> N >> K;

  times = 10000000;
  for(int i = 0; i < times; ++i) {
    a = 0;
    b = 0;
    for(int j = 0; j < N; ++j) {
      a += rand() % 6;
    }
    for(int j = 0; j < N-K; ++j) {
      b += rand() % 6;
    }
    for(int j = 0; j < K; ++j) {
      b += rand() % 3 + 3;
    }
    if( b > a ) {
      win += 1;
    }
  }

  std::cout << (double)win/times << std::endl;
  
  return 0;
}
	
0