結果

問題 No.75 回数の期待値の問題
ユーザー gigurururugigurururu
提出日時 2014-11-23 23:30:25
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 125 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 25,472 KB
最終ジャッジ日時 2024-06-10 21:43:20
合計ジャッジ時間 37,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,061 ms
25,472 KB
testcase_01 AC 1,062 ms
12,544 KB
testcase_02 AC 1,065 ms
12,544 KB
testcase_03 AC 1,750 ms
12,544 KB
testcase_04 AC 1,074 ms
12,672 KB
testcase_05 AC 1,072 ms
12,800 KB
testcase_06 AC 1,055 ms
12,672 KB
testcase_07 AC 1,737 ms
12,800 KB
testcase_08 AC 1,854 ms
12,544 KB
testcase_09 AC 1,920 ms
12,672 KB
testcase_10 AC 2,074 ms
12,544 KB
testcase_11 AC 2,225 ms
12,544 KB
testcase_12 AC 2,524 ms
12,672 KB
testcase_13 AC 2,657 ms
12,800 KB
testcase_14 AC 2,786 ms
12,544 KB
testcase_15 AC 3,596 ms
12,544 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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