結果

問題 No.15 カタログショッピング
ユーザー gigurururugigurururu
提出日時 2014-12-16 17:24:23
言語 Ruby
(3.3.0)
結果
AC  
実行時間 283 ms / 5,000 ms
コード長 263 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 34,176 KB
最終ジャッジ日時 2024-06-08 01:18:45
合計ジャッジ時間 2,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 84 ms
12,288 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 83 ms
12,288 KB
testcase_05 AC 278 ms
33,920 KB
testcase_06 AC 270 ms
33,920 KB
testcase_07 AC 275 ms
34,176 KB
testcase_08 AC 283 ms
34,176 KB
testcase_09 AC 275 ms
34,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,s=gets.split.map &:to_i
def f n,ofs
  d={0=>[[]]}
  n.times{|i|c=gets.to_i;d.dup.map{|k,v|d[k+c]=(d[k+c]||[])+v.map{|j|j+[i+1+ofs]}}}
  d
end
d1=f n/2,0
d2=f (n+1)/2,n/2
puts d1.flat_map{|k,v|(t=d2[s-k])?v.product(t).map{|i,j|i+j}:[]}.sort.map{|i|i*" "}
0