結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー yocto_sothothyocto_sothoth
提出日時 2020-12-05 23:10:25
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 287 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-09-16 05:01:57
合計ジャッジ時間 8,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
12,160 KB
testcase_01 AC 112 ms
13,184 KB
testcase_02 AC 101 ms
12,416 KB
testcase_03 AC 105 ms
12,672 KB
testcase_04 AC 1,190 ms
12,544 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

p, c = gets.split.map(&:to_i)
prime = Prime.each(13).to_a
composite = Array(2..13) - prime
sum = 0.0

prime.repeated_permutation(p).each do |x|
  composite.repeated_permutation(c).each do |y|
    sum += x.inject(1, :*) * y.inject(1, :*)
  end
end

puts sum / 6**(p + c)
0