結果

問題 No.58 イカサマなサイコロ
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-09-23 03:04:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,624 ms / 5,000 ms
コード長 690 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 59,452 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-17 16:03:16
合計ジャッジ時間 9,998 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
6,816 KB
testcase_01 AC 1,624 ms
6,820 KB
testcase_02 AC 342 ms
6,816 KB
testcase_03 AC 177 ms
6,816 KB
testcase_04 AC 985 ms
6,816 KB
testcase_05 AC 1,150 ms
6,820 KB
testcase_06 AC 1,471 ms
6,816 KB
testcase_07 AC 333 ms
6,820 KB
testcase_08 AC 665 ms
6,820 KB
testcase_09 AC 1,476 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <cstdio>
#include <cstdlib>
typedef long long ll;
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)

int n, k;

bool solve(){//モンテカルロ法

    int sum_taro = 0;
    rep(i, k){
        sum_taro += rand() % 3 + 4;
    }
    rep(i, n - k){
        sum_taro += rand() % 6 + 1;
    }

    int sum_ziro = 0;
    rep(i, n){
        sum_ziro += rand() % 6 + 1;
    }

    if(sum_taro > sum_ziro) return true;
    else return false;
}

int main(void){
    cin >> n >> k;
    
    int win = 0;
    rep(i, 4000000){
        if(solve()) win++;
    }
    printf("%.9f\n", (double)win / 4000000.0);
    return 0;
}
0