結果

問題 No.15 カタログショッピング
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-01-30 10:21:18
言語 Ruby
(3.3.0)
結果
AC  
実行時間 825 ms / 5,000 ms
コード長 292 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-06-07 18:36:50
合計ジャッジ時間 5,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,288 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 93 ms
12,416 KB
testcase_04 AC 91 ms
12,288 KB
testcase_05 AC 825 ms
23,168 KB
testcase_06 AC 821 ms
23,040 KB
testcase_07 AC 807 ms
23,040 KB
testcase_08 AC 810 ms
23,168 KB
testcase_09 AC 811 ms
22,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,s=gets.split.map &:to_i
a=(0..n).map{gets.to_i}
h={}
(0...1<<n-n/2).each{|y|(h[(0..n).map{|i|(y>>i-n/2&1)*a[i]}.inject:+]||=[])<<y}
(0...1<<n/2).map{|x|(h[s-(0..n).map{|i|(x>>i&1)*a[i]}.inject(:+)]||[]).map{|y|x|y<<n/2}}.flatten.map{|z|(0..n).select{|i|z>>i-1&1>0}}.sort.each{|_|puts _*' '}
0