結果

問題 No.1463 Hungry Kanten
ユーザー nephrologistnephrologist
提出日時 2021-04-02 21:30:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 130,328 KB
最終ジャッジ日時 2024-06-06 09:09:32
合計ジャッジ時間 2,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,540 KB
testcase_01 AC 37 ms
53,324 KB
testcase_02 AC 54 ms
69,936 KB
testcase_03 AC 175 ms
77,680 KB
testcase_04 AC 39 ms
58,352 KB
testcase_05 AC 264 ms
130,328 KB
testcase_06 AC 36 ms
52,204 KB
testcase_07 AC 37 ms
52,792 KB
testcase_08 AC 37 ms
52,836 KB
testcase_09 AC 36 ms
53,036 KB
testcase_10 AC 41 ms
61,616 KB
testcase_11 AC 45 ms
60,640 KB
testcase_12 AC 50 ms
64,144 KB
testcase_13 AC 45 ms
60,604 KB
testcase_14 AC 52 ms
65,272 KB
testcase_15 AC 50 ms
64,164 KB
testcase_16 AC 55 ms
70,924 KB
testcase_17 AC 79 ms
80,836 KB
testcase_18 AC 56 ms
69,848 KB
testcase_19 AC 148 ms
100,572 KB
testcase_20 AC 184 ms
107,468 KB
testcase_21 AC 44 ms
61,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline
n, k = map(int, input().split())
A = list(map(int, input().split()))

ans = set()
popcnt = [0] * ((1 << n) + 10)
for i in range(1 << n):
    popcnt[i] = popcnt[i // 2] + i % 2
    if popcnt[i] >= k:
        goukei = 0
        prod = 1
        for j in range(n):
            if (i >> j) & 1:
                goukei += A[j]
                prod *= A[j]
        ans.add(goukei)
        ans.add(prod)
        # print(goukei)
        # print(prod)

print(len(list(ans)))
0