結果

問題 No.1463 Hungry Kanten
ユーザー tobusakana
提出日時 2023-09-07 20:30:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 120,648 KB
最終ジャッジ日時 2025-06-20 01:49:29
合計ジャッジ時間 3,361 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))

def popcnt(x):
    res = 0
    while x:
        res += x & 1
        x >>= 1
    return res
    
ans = set()
for status in range(1 << N):
    if popcnt(status) < K:
        continue
    s = 0
    m = 1
    for i in range(N):
        if (status >> i) & 1:
            s += A[i]
            m *= A[i]
    ans.add(s)
    ans.add(m)

print(len(ans))
    
    
0