結果

問題 No.1463 Hungry Kanten
ユーザー tobusakanatobusakana
提出日時 2023-09-07 20:30:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 120,888 KB
最終ジャッジ日時 2024-06-25 14:15:27
合計ジャッジ時間 3,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 75 ms
77,184 KB
testcase_03 AC 212 ms
76,288 KB
testcase_04 AC 46 ms
59,904 KB
testcase_05 AC 349 ms
120,888 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 49 ms
60,928 KB
testcase_11 AC 51 ms
61,440 KB
testcase_12 AC 55 ms
62,976 KB
testcase_13 AC 52 ms
61,696 KB
testcase_14 AC 60 ms
67,200 KB
testcase_15 AC 60 ms
68,608 KB
testcase_16 AC 76 ms
76,928 KB
testcase_17 AC 93 ms
79,488 KB
testcase_18 AC 81 ms
76,800 KB
testcase_19 AC 187 ms
92,348 KB
testcase_20 AC 229 ms
101,164 KB
testcase_21 AC 49 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

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