結果

問題 No.1463 Hungry Kanten
ユーザー yuruhiyayuruhiya
提出日時 2021-04-02 21:39:43
言語 Crystal
(1.11.2)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 17,172 ms
コンパイル使用メモリ 302,764 KB
実行使用メモリ 129,536 KB
最終ジャッジ日時 2024-06-06 09:15:15
合計ジャッジ時間 19,978 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 21 ms
9,088 KB
testcase_03 AC 571 ms
125,500 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 583 ms
129,536 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 21 ms
9,216 KB
testcase_17 AC 56 ms
22,528 KB
testcase_18 AC 30 ms
15,104 KB
testcase_19 AC 258 ms
68,864 KB
testcase_20 AC 394 ms
102,528 KB
testcase_21 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

require "big"

n, k = read_line.split.map(&.to_i)
a = read_line.split.map(&.to_big_i)
puts [0, 1].repeated_permutations(n).select { |perm|
  perm.sum >= k
}.flat_map { |perm|
  b = (0...n).select { |i| perm[i] > 0 }.map { |i| a[i] }
  [b.sum, b.reduce(1.to_big_i) { |acc, val| acc * val }]
}.uniq.size
0