結果

問題 No.473 和と積の和
ユーザー cielciel
提出日時 2016-12-24 14:53:47
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 296 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-05-09 13:37:48
合計ジャッジ時間 6,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 106 ms
12,416 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 107 ms
12,288 KB
testcase_07 WA -
testcase_08 AC 105 ms
12,416 KB
testcase_09 WA -
testcase_10 AC 106 ms
12,416 KB
testcase_11 AC 105 ms
12,288 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 105 ms
12,416 KB
testcase_22 AC 105 ms
12,288 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 RE -
testcase_35 RE -
testcase_36 WA -
testcase_37 WA -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - b
Syntax OK

ソースコード

diff #

require'prime'
n,x=gets.split.map &:to_i
a=(x+1).prime_division.map{|k,v|(0..v).map{|i|k**i}}
b=a.shift.product(*a).map{|e|e.reduce(:*)}.sort[1..-1].reverse
f=->x,n,d,a{
return 1 if x==1&&n==0
return 0 if x==1||n==0
r=0
(d...a.size).each{|i|r+=f.(x/a[i],n-1,i+1,a) if x%a[i]==0}
r
}
p f.(x,n,0,a)
0