結果

問題 No.108 トリプルカードコンプ
ユーザー gigurururugigurururu
提出日時 2014-12-22 00:37:47
言語 Ruby
(3.3.0)
結果
AC  
実行時間 543 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 29,440 KB
最終ジャッジ日時 2024-06-08 01:19:45
合計ジャッジ時間 3,905 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
12,160 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 AC 72 ms
12,160 KB
testcase_03 AC 70 ms
12,160 KB
testcase_04 AC 73 ms
12,288 KB
testcase_05 AC 71 ms
12,160 KB
testcase_06 AC 70 ms
12,160 KB
testcase_07 AC 543 ms
29,440 KB
testcase_08 AC 83 ms
12,416 KB
testcase_09 AC 71 ms
12,032 KB
testcase_10 AC 71 ms
12,288 KB
testcase_11 AC 70 ms
12,288 KB
testcase_12 AC 70 ms
12,160 KB
testcase_13 AC 102 ms
13,312 KB
testcase_14 AC 84 ms
12,544 KB
testcase_15 AC 77 ms
12,288 KB
testcase_16 AC 93 ms
12,928 KB
testcase_17 AC 73 ms
12,288 KB
testcase_18 AC 411 ms
26,240 KB
testcase_19 AC 177 ms
16,384 KB
testcase_20 AC 116 ms
13,696 KB
testcase_21 AC 297 ms
22,784 KB
testcase_22 AC 81 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:7: warning: `*' interpreted as argument prefix
Syntax OK

ソースコード

diff #

N=gets.to_f
H={[0]*3=>0}
def dfs a,b,c
a|b|c<0?0:H[[a,b,c]]||=(N+a*dfs(a-1,b+1,c)+b*dfs(a,b-1,c+1)+c*dfs(a,b,c-1))/(a+b+c)
end
a=gets.split.map &:to_i
p dfs *(0..2).map{|i|a.count i}
0