結果

問題 No.1463 Hungry Kanten
ユーザー c-yanc-yan
提出日時 2021-04-02 21:53:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,374 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,104 KB
最終ジャッジ日時 2024-12-23 23:32:24
合計ジャッジ時間 6,239 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
from functools import reduce

N, K, *A = map(int, open(0).read().split())

s = set()
for p in product([True, False], repeat=N):
    if list(p).count(True) < K:
        continue
    s.add(sum(A[i] for i in range(N) if p[i]))
    s.add(reduce(lambda x, y: x * y, (A[i] for i in range(N) if p[i])))
print(len(s))
0