結果

問題 No.58 イカサマなサイコロ
ユーザー alpha_virginisalpha_virginis
提出日時 2015-06-19 21:00:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2,411 ms / 5,000 ms
コード長 496 bytes
コンパイル時間 2,911 ms
コンパイル使用メモリ 143,936 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-21 09:49:15
合計ジャッジ時間 14,731 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 479 ms
4,380 KB
testcase_01 AC 2,411 ms
4,380 KB
testcase_02 AC 471 ms
4,376 KB
testcase_03 AC 250 ms
4,376 KB
testcase_04 AC 1,343 ms
4,376 KB
testcase_05 AC 1,559 ms
4,380 KB
testcase_06 AC 2,104 ms
4,376 KB
testcase_07 AC 488 ms
4,380 KB
testcase_08 AC 916 ms
4,376 KB
testcase_09 AC 2,100 ms
4,380 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