結果

問題 No.1463 Hungry Kanten
ユーザー 大橋佐和大橋佐和
提出日時 2022-05-06 20:44:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 122,136 KB
最終ジャッジ日時 2024-07-05 21:29:53
合計ジャッジ時間 3,648 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 33 ms
51,584 KB
testcase_02 AC 87 ms
76,544 KB
testcase_03 AC 391 ms
76,416 KB
testcase_04 AC 50 ms
64,384 KB
testcase_05 AC 461 ms
122,136 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 34 ms
52,608 KB
testcase_08 AC 34 ms
52,224 KB
testcase_09 AC 33 ms
52,224 KB
testcase_10 AC 48 ms
63,016 KB
testcase_11 AC 51 ms
64,260 KB
testcase_12 AC 58 ms
67,584 KB
testcase_13 AC 58 ms
67,584 KB
testcase_14 AC 74 ms
76,032 KB
testcase_15 AC 73 ms
76,032 KB
testcase_16 AC 83 ms
77,056 KB
testcase_17 AC 108 ms
79,488 KB
testcase_18 AC 123 ms
77,568 KB
testcase_19 AC 255 ms
93,232 KB
testcase_20 AC 399 ms
102,936 KB
testcase_21 AC 52 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a_list = list(map(int, input().split()))

num_set = set()

for i in range(2**n):
    sum_a = 0
    if bin(i).count("1") >= k:

        for j in range(n):
            if i >> j & 1:
                sum_a += a_list[j]

    num_set.add(sum_a)

for i in range(2**n):
    kakeru_a = 1
    if bin(i).count("1") >= k:

        for j in range(n):
            if i >> j & 1:
                kakeru_a = kakeru_a * a_list[j]

    num_set.add(kakeru_a)
num_set.remove(0)
num_set.remove(1)

print(len(num_set))
0