結果
問題 | No.58 イカサマなサイコロ |
ユーザー | ciel |
提出日時 | 2014-11-26 21:14:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 247 ms / 5,000 ms |
コード長 | 555 bytes |
コンパイル時間 | 662 ms |
コンパイル使用メモリ | 66,280 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-11 04:07:40 |
合計ジャッジ時間 | 2,371 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
5,248 KB |
testcase_01 | AC | 247 ms
5,376 KB |
testcase_02 | AC | 48 ms
5,376 KB |
testcase_03 | AC | 25 ms
5,376 KB |
testcase_04 | AC | 139 ms
5,376 KB |
testcase_05 | AC | 164 ms
5,376 KB |
testcase_06 | AC | 214 ms
5,376 KB |
testcase_07 | AC | 56 ms
5,376 KB |
testcase_08 | AC | 95 ms
5,376 KB |
testcase_09 | AC | 217 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%d%d",&N,&K); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#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=1000000; int S=0; uniform_int_distribution<int> gooddice(1,6); uniform_int_distribution<int> badddice(4,6); mt19937_64 engine((unsigned int)time(NULL)^(getpid()<<16)); 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); }