結果

問題 No.75 回数の期待値の問題
ユーザー ninoinuininoinui
提出日時 2020-09-26 05:41:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,824 ms / 5,000 ms
コード長 647 bytes
コンパイル時間 1,963 ms
コンパイル使用メモリ 202,024 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 15:08:46
合計ジャッジ時間 10,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
5,248 KB
testcase_01 AC 74 ms
5,376 KB
testcase_02 AC 74 ms
5,376 KB
testcase_03 AC 110 ms
5,376 KB
testcase_04 AC 74 ms
5,376 KB
testcase_05 AC 74 ms
5,376 KB
testcase_06 AC 74 ms
5,376 KB
testcase_07 AC 113 ms
5,376 KB
testcase_08 AC 117 ms
5,376 KB
testcase_09 AC 123 ms
5,376 KB
testcase_10 AC 131 ms
5,376 KB
testcase_11 AC 142 ms
5,376 KB
testcase_12 AC 157 ms
5,376 KB
testcase_13 AC 164 ms
5,376 KB
testcase_14 AC 171 ms
5,376 KB
testcase_15 AC 217 ms
5,376 KB
testcase_16 AC 809 ms
5,376 KB
testcase_17 AC 1,424 ms
5,376 KB
testcase_18 AC 1,718 ms
5,376 KB
testcase_19 AC 1,824 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template <typename T, typename U> void cmin(T &a, U b) {
  if (a > b) a = b;
}
template <typename T, typename U> void cmax(T &a, U b) {
  if (a < b) a = b;
}

signed main() {
  cin.tie(nullptr);
  ios_base::sync_with_stdio(false);

  random_device rd;
  mt19937 mt(rd());

  long K;
  cin >> K;
  long ans = 0;
  for (long i = 1e6; i; i--) {
    long sum = 0, cnt = 0;
    while (true) {
      sum += mt() % 6 + 1, cnt++;
      if (sum == K) {
        ans += cnt;
        break;
      } else {
        if (sum > K) sum = 0;
      }
    }
  }
  cout << fixed << setprecision(3) << ans / 1e6 << "\n";
}
0