結果

問題 No.58 イカサマなサイコロ
ユーザー itezpaceitezpace
提出日時 2017-05-13 23:35:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,256 ms / 5,000 ms
コード長 434 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 54,264 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 12:20:27
合計ジャッジ時間 18,879 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 667 ms
5,248 KB
testcase_01 AC 3,256 ms
5,376 KB
testcase_02 AC 670 ms
5,376 KB
testcase_03 AC 344 ms
5,376 KB
testcase_04 AC 1,961 ms
5,376 KB
testcase_05 AC 2,288 ms
5,376 KB
testcase_06 AC 2,924 ms
5,376 KB
testcase_07 AC 683 ms
5,376 KB
testcase_08 AC 1,315 ms
5,376 KB
testcase_09 AC 2,935 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int n, k;

bool calc(void) {
  int taro = 0;
  for(int i = 0; i < k; ++i) taro += (rand() % 3 + 4);
  for(int i = 0; i < n - k; ++i) taro += (rand() % 6 + 1);
  int jiro = 0;
  for(int i = 0; i < n; ++i) jiro += (rand() % 6 + 1);
  return taro > jiro;
}

int main() {
  cin>>n>>k;
  double win = 0, test = 8000000;
  for(int i = 0; i < test; ++i) if(calc()) win++;
  cout<<(win/test)<<endl;
}
0