結果

問題 No.58 イカサマなサイコロ
ユーザー cielciel
提出日時 2015-06-19 03:43:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 175 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 66,308 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 03:50:32
合計ジャッジ時間 1,974 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
6,816 KB
testcase_01 AC 175 ms
6,940 KB
testcase_02 AC 38 ms
6,940 KB
testcase_03 AC 19 ms
6,944 KB
testcase_04 AC 106 ms
6,940 KB
testcase_05 AC 127 ms
6,940 KB
testcase_06 AC 154 ms
6,940 KB
testcase_07 AC 35 ms
6,940 KB
testcase_08 AC 71 ms
6,940 KB
testcase_09 AC 160 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |     scanf("%d%d",&N,&K);
      |     ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <vector>
#include <random>
#include <cstdio>
#include <ctime>
#include <unistd.h>
using namespace std;

int main(){
    int N,K;
    scanf("%d%d",&N,&K);
    int T=999999;
    int S=0;
    uniform_int_distribution<int> gooddice(1,6);
    uniform_int_distribution<int> badddice(4,6);
    mt19937_64 engine(0);
    for(int I=0;I<T;I++){
        int a=0,b=0,i=0;
        for(;i<K;i++)a+=gooddice(engine),b+=badddice(engine);
        for(;i<N;i++)a+=gooddice(engine),b+=gooddice(engine);
        if(a<b)S++;
    }
    printf("%f\n",S*1.0/T);
}
0