結果

問題 No.1463 Hungry Kanten
ユーザー phocomphocom
提出日時 2021-04-02 21:33:58
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,140 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 46,356 KB
最終ジャッジ日時 2024-06-06 09:12:17
合計ジャッジ時間 6,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,288 KB
testcase_01 AC 97 ms
12,416 KB
testcase_02 AC 136 ms
13,184 KB
testcase_03 AC 903 ms
12,416 KB
testcase_04 AC 96 ms
12,544 KB
testcase_05 AC 1,140 ms
46,356 KB
testcase_06 AC 91 ms
12,288 KB
testcase_07 AC 90 ms
12,288 KB
testcase_08 AC 92 ms
12,288 KB
testcase_09 AC 90 ms
12,544 KB
testcase_10 AC 91 ms
12,288 KB
testcase_11 AC 89 ms
12,288 KB
testcase_12 AC 90 ms
12,288 KB
testcase_13 AC 93 ms
12,160 KB
testcase_14 AC 101 ms
12,416 KB
testcase_15 AC 107 ms
12,544 KB
testcase_16 AC 130 ms
12,928 KB
testcase_17 AC 175 ms
14,080 KB
testcase_18 AC 246 ms
13,056 KB
testcase_19 AC 511 ms
27,008 KB
testcase_20 AC 929 ms
29,060 KB
testcase_21 AC 90 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:14: warning: mismatched indentations at 'end' with 'if' at 10
Syntax OK

ソースコード

diff #

N,K=gets.split.map &:to_i
A=gets.split.map &:to_i
require 'set'
ans = Set.new
(2**N).times{|b|
  s=0
  m=1
  c=0
  N.times{|i|
    if b[i]==1 then
		s+=A[i]
		m*=A[i]
		c+=1
	end
  }
  if c >= K then
	ans << s
	ans << m
  end
}
p ans.size
0