結果

問題 No.58 イカサマなサイコロ
ユーザー KKT89KKT89
提出日時 2020-07-17 14:55:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 918 bytes
コンパイル時間 1,158 ms
コンパイル使用メモリ 112,124 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-11-28 14:41:28
合計ジャッジ時間 3,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 225 ms
5,248 KB
testcase_02 AC 50 ms
5,248 KB
testcase_03 AC 31 ms
5,248 KB
testcase_04 AC 137 ms
5,248 KB
testcase_05 AC 157 ms
5,248 KB
testcase_06 AC 201 ms
5,248 KB
testcase_07 AC 55 ms
5,248 KB
testcase_08 AC 97 ms
5,248 KB
testcase_09 AC 199 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <ctime>
#include <assert.h>
#include <chrono>
#include <random>
#include <numeric>
#include <set>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

int a[6]={1,2,3,4,5,6};
int b[6]={4,4,5,5,6,6};

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,k; cin >> n >> k;
    int cnt=0;
    for(int i=0;i<1e6;i++){
        int score=0;
        for(int i=0;i<n;i++){
            score+=a[myRand(6)];
        }
        int score2=0;
        for(int i=0;i<n;i++){
            if(i<k)score2+=b[myRand(6)];
            else score2+=a[myRand(6)];
        }
        if(score2>score)cnt++;
    }
    printf("%.9f\n",(double)(cnt/1e6) );
}
0