結果

問題 No.75 回数の期待値の問題
ユーザー letrangerjpletrangerjp
提出日時 2017-10-21 15:47:18
言語 Ruby
(3.3.0)
結果
AC  
実行時間 3,787 ms / 5,000 ms
コード長 222 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-11-21 12:31:21
合計ジャッジ時間 18,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
12,288 KB
testcase_01 AC 269 ms
12,160 KB
testcase_02 AC 273 ms
12,416 KB
testcase_03 AC 346 ms
12,288 KB
testcase_04 AC 268 ms
12,288 KB
testcase_05 AC 265 ms
12,160 KB
testcase_06 AC 257 ms
12,160 KB
testcase_07 AC 347 ms
12,416 KB
testcase_08 AC 359 ms
12,288 KB
testcase_09 AC 368 ms
12,416 KB
testcase_10 AC 384 ms
12,288 KB
testcase_11 AC 404 ms
12,160 KB
testcase_12 AC 437 ms
12,160 KB
testcase_13 AC 449 ms
12,416 KB
testcase_14 AC 463 ms
12,160 KB
testcase_15 AC 553 ms
12,416 KB
testcase_16 AC 1,724 ms
12,160 KB
testcase_17 AC 2,988 ms
12,416 KB
testcase_18 AC 3,510 ms
12,416 KB
testcase_19 AC 3,787 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

K = gets.to_i
N = 100000
total_count = 0
N.times{
  count = 0
  loop {
    sum = 0
    while sum < K
      sum += rand(1..6)
      count += 1
    end
    break if sum == K
  }
  total_count += count
}
p total_count.fdiv N
0