結果

問題 No.58 イカサマなサイコロ
ユーザー maine_honzukimaine_honzuki
提出日時 2020-05-08 22:44:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 5,000 ms
コード長 462 bytes
コンパイル時間 1,553 ms
コンパイル使用メモリ 169,848 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 01:02:54
合計ジャッジ時間 3,027 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
6,812 KB
testcase_01 AC 198 ms
6,940 KB
testcase_02 AC 44 ms
6,944 KB
testcase_03 AC 27 ms
6,944 KB
testcase_04 AC 120 ms
6,940 KB
testcase_05 AC 136 ms
6,944 KB
testcase_06 AC 173 ms
6,944 KB
testcase_07 AC 47 ms
6,944 KB
testcase_08 AC 84 ms
6,940 KB
testcase_09 AC 173 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N, K;
    cin >> N >> K;

    mt19937 mt;

    int cnt = 0, MAX = 1000000;
    for (int times = 0; times < MAX; times++) {
        int tarou = 0, jirou = 0;
        for (int i = 0; i < N; i++) {
            jirou += mt() % 6 + 1;
            tarou += (i < K ? mt() % 3 + 4 : mt() % 6 + 1);
        }
        if (tarou > jirou)
            cnt++;
    }

    cout << (double)cnt / MAX << endl;
}
0