結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー Tsuneo YoshiokaTsuneo Yoshioka
提出日時 2015-05-22 23:19:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-07-06 05:35:59
合計ジャッジ時間 1,507 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,288 KB
testcase_01 AC 83 ms
12,288 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 78 ms
12,288 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 110 ms
13,184 KB
testcase_06 AC 93 ms
12,544 KB
testcase_07 AC 95 ms
12,544 KB
testcase_08 AC 77 ms
12,288 KB
testcase_09 AC 74 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

P,C=gets.split.map(&:to_i)
dp=[]
dp[0]={}
dp[0][1]=1

(1..P+C).each{|i|
    dp[i]={}
    dp[i-1].each{|j, k|
        ar=nil
        if(i<=P)
            ar = [2,3,5,7,11,13]
        else
            ar = [4,6,8,9,10,12]
        end
        ar.each{|l|
            dp[i][j*l] ||= 0
            dp[i][j*l] += k
        }
    }
}

total=0
dp[P+C].each{|i,j|
    total += i*j
}
# puts "total=#{total}"
puts total*1.0 / (1.0 * 6**(P+C))
0