結果

問題 No.75 回数の期待値の問題
ユーザー gigurururugigurururu
提出日時 2014-11-23 23:30:25
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 125 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 8,064 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2025-01-02 20:32:54
合計ジャッジ時間 64,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,303 ms
25,984 KB
testcase_01 AC 1,322 ms
19,872 KB
testcase_02 AC 1,345 ms
26,112 KB
testcase_03 AC 2,166 ms
12,928 KB
testcase_04 AC 1,319 ms
13,312 KB
testcase_05 AC 1,340 ms
12,800 KB
testcase_06 AC 1,318 ms
12,928 KB
testcase_07 AC 2,298 ms
13,184 KB
testcase_08 AC 2,298 ms
12,800 KB
testcase_09 AC 2,438 ms
12,800 KB
testcase_10 AC 2,646 ms
12,800 KB
testcase_11 AC 2,871 ms
12,800 KB
testcase_12 AC 3,200 ms
12,928 KB
testcase_13 AC 3,492 ms
12,928 KB
testcase_14 AC 3,530 ms
12,928 KB
testcase_15 AC 4,500 ms
13,184 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

k=gets.to_i
i=0
200000.times{
  s=0
  while s!=k
    i+=1
    s=0 if s>k
    s+=[*1..6].sample
  end
}
p i/200000.0
0