結果
問題 | No.58 イカサマなサイコロ |
ユーザー | DialBird |
提出日時 | 2017-02-20 09:42:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3,275 ms / 5,000 ms |
コード長 | 1,002 bytes |
コンパイル時間 | 523 ms |
コンパイル使用メモリ | 82,932 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-09 14:43:25 |
合計ジャッジ時間 | 19,115 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 685 ms
6,816 KB |
testcase_01 | AC | 3,275 ms
6,944 KB |
testcase_02 | AC | 670 ms
6,940 KB |
testcase_03 | AC | 331 ms
6,944 KB |
testcase_04 | AC | 2,014 ms
6,944 KB |
testcase_05 | AC | 2,383 ms
6,944 KB |
testcase_06 | AC | 2,993 ms
6,940 KB |
testcase_07 | AC | 683 ms
6,944 KB |
testcase_08 | AC | 1,354 ms
6,944 KB |
testcase_09 | AC | 3,017 ms
6,940 KB |
ソースコード
#include <iostream> #include <sstream> #include <vector> #include <array> #include <string> #include <algorithm> #include <map> #include <cmath> #include <random> using namespace std; #define REP(i,first,last) for (int i=first;i<last;++i) #define MAX(x,y) (x > y ? x : y) #define MIN(x,y) (x < y ? x : y) int N, K; int trial = 9000000; // xからyまでをランダムに出力する auto random_range = [](int x, int y) { return rand() % (y - x + 1) + x; }; int main(){ cin >> N >> K; int taro_win = 0.0; REP(i,0,trial) { int taro_result = 0; REP(i,0,N){ if (i < K) { taro_result += random_range(4, 6); } else { taro_result += random_range(1, 6); } } int jiro_result = 0; // 太郎のと一緒にすると、ランダム値が大体一緒になってしまうから REP(i,0,N){ jiro_result += random_range(1, 6); } if (taro_result > jiro_result) ++taro_win; } printf("%.5f\n", (double)taro_win / trial); }