結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー smz_8110smz_8110
提出日時 2017-04-06 11:04:00
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-08 13:42:41
合計ジャッジ時間 7,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,032 KB
testcase_01 AC 90 ms
12,032 KB
testcase_02 AC 84 ms
12,288 KB
testcase_03 AC 81 ms
12,032 KB
testcase_04 AC 469 ms
12,160 KB
testcase_05 AC 82 ms
12,032 KB
testcase_06 AC 468 ms
12,160 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 471 ms
12,288 KB
testcase_10 AC 82 ms
12,160 KB
testcase_11 AC 135 ms
12,160 KB
testcase_12 AC 83 ms
12,032 KB
testcase_13 AC 97 ms
12,160 KB
testcase_14 AC 79 ms
12,032 KB
testcase_15 AC 85 ms
12,032 KB
testcase_16 AC 82 ms
12,032 KB
testcase_17 AC 84 ms
12,160 KB
testcase_18 AC 467 ms
12,416 KB
testcase_19 AC 470 ms
12,416 KB
testcase_20 AC 469 ms
12,288 KB
testcase_21 AC 472 ms
12,288 KB
testcase_22 AC 471 ms
12,416 KB
testcase_23 AC 462 ms
12,416 KB
testcase_24 AC 466 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:11: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

GX,GY,K=gets.split.map &:to_i
a=K.times.map{
  x,y,n=gets.split.map(&:to_i)
  (1..n).map{|i|[x*i,y*i,i,i]}
}
F=->a,i,v,r{
  if i+1<a.size
    F[a,i+1,v,r]
  end
  a[i].each{|b|
    x,y,n=b
    w=[v[0]+x,v[1]+y,v[2]+[b[-1]]]
    if w[0]==GX&&w[1]==GY
      r<<w[2]
    end
    if i+1<a.size
      F[a,i+1,w,r]
    end
  }
}
F[a,0,[0,0,[]],r=[]]
c=0
h={}
r.each{|v|
  d=(1..v.inject(:+)).to_a.inject(:*)
  v.each{|w|d/=h[w]||h[w]=(1..w).to_a.inject(:*)}
  c+=d
}
p c%1000000007
0