結果

問題 No.1463 Hungry Kanten
ユーザー wgrapewgrape
提出日時 2024-02-06 11:44:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 120,756 KB
最終ジャッジ日時 2024-09-28 11:59:01
合計ジャッジ時間 2,686 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 64 ms
77,032 KB
testcase_03 AC 181 ms
76,188 KB
testcase_04 AC 43 ms
60,160 KB
testcase_05 AC 301 ms
120,756 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 34 ms
51,712 KB
testcase_08 AC 34 ms
51,968 KB
testcase_09 AC 34 ms
51,712 KB
testcase_10 AC 44 ms
60,672 KB
testcase_11 AC 47 ms
61,184 KB
testcase_12 AC 46 ms
62,848 KB
testcase_13 AC 44 ms
61,696 KB
testcase_14 AC 50 ms
67,072 KB
testcase_15 AC 50 ms
68,864 KB
testcase_16 AC 60 ms
77,004 KB
testcase_17 AC 74 ms
79,488 KB
testcase_18 AC 63 ms
76,544 KB
testcase_19 AC 155 ms
92,216 KB
testcase_20 AC 191 ms
100,788 KB
testcase_21 AC 44 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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