結果

問題 No.75 回数の期待値の問題
ユーザー wotsushiwotsushi
提出日時 2017-04-09 10:04:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,806 ms / 5,000 ms
コード長 501 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-07-18 01:23:50
合計ジャッジ時間 7,144 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
12,928 KB
testcase_01 AC 107 ms
12,928 KB
testcase_02 AC 105 ms
12,928 KB
testcase_03 AC 107 ms
13,056 KB
testcase_04 AC 107 ms
12,928 KB
testcase_05 AC 106 ms
12,800 KB
testcase_06 AC 114 ms
12,928 KB
testcase_07 AC 110 ms
13,056 KB
testcase_08 AC 113 ms
12,928 KB
testcase_09 AC 109 ms
13,056 KB
testcase_10 AC 109 ms
13,056 KB
testcase_11 AC 110 ms
13,184 KB
testcase_12 AC 109 ms
13,184 KB
testcase_13 AC 110 ms
13,056 KB
testcase_14 AC 109 ms
13,056 KB
testcase_15 AC 113 ms
13,056 KB
testcase_16 AC 262 ms
13,440 KB
testcase_17 AC 906 ms
14,848 KB
testcase_18 AC 1,463 ms
15,744 KB
testcase_19 AC 1,806 ms
17,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'matrix'

K = gets.to_i
ans = Matrix[*(0...K).map {|i|
               (0...K).map {|j|
               if j == 0
                 if i == 0
                   [K, 6].min
                 else
                   [(K - i) - 6, 0].min
                 end
               elsif j < i
                 0
               elsif j == i
                 6
               elsif j <= i + 6
                 -1
               else
                 0
               end
}}].lup.solve([6]*K)[0].to_f
puts ans
0