結果

問題 No.1463 Hungry Kanten
ユーザー yuruhiyayuruhiya
提出日時 2021-04-02 21:56:06
言語 Crystal
(1.11.2)
結果
AC  
実行時間 588 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 13,806 ms
コンパイル使用メモリ 303,528 KB
実行使用メモリ 130,344 KB
最終ジャッジ日時 2024-06-06 09:22:32
合計ジャッジ時間 14,986 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 21 ms
9,216 KB
testcase_03 AC 572 ms
125,652 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 588 ms
130,344 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 8 ms
6,940 KB
testcase_15 AC 5 ms
6,944 KB
testcase_16 AC 21 ms
9,216 KB
testcase_17 AC 56 ms
23,492 KB
testcase_18 AC 29 ms
15,104 KB
testcase_19 AC 269 ms
70,080 KB
testcase_20 AC 385 ms
104,688 KB
testcase_21 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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