結果

問題 No.1463 Hungry Kanten
ユーザー kohei2019kohei2019
提出日時 2022-05-21 12:13:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 120,936 KB
最終ジャッジ日時 2024-09-20 11:27:35
合計ジャッジ時間 3,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 71 ms
77,364 KB
testcase_03 AC 290 ms
76,288 KB
testcase_04 AC 44 ms
60,416 KB
testcase_05 AC 384 ms
120,936 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 37 ms
52,608 KB
testcase_10 AC 45 ms
60,672 KB
testcase_11 AC 48 ms
61,312 KB
testcase_12 AC 53 ms
65,024 KB
testcase_13 AC 47 ms
62,336 KB
testcase_14 AC 59 ms
68,480 KB
testcase_15 AC 57 ms
68,864 KB
testcase_16 AC 71 ms
76,928 KB
testcase_17 AC 95 ms
79,488 KB
testcase_18 AC 91 ms
76,672 KB
testcase_19 AC 216 ms
92,040 KB
testcase_20 AC 293 ms
101,600 KB
testcase_21 AC 46 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
lsA = list(map(int,input().split()))
aset = set()

for i in range(2**N):
    if bin(i).count('1') < K:
        continue
    asum = 0
    apro = 1
    for j in range(N):
        if (i>>j)&1:
            asum += lsA[j]
            apro *= lsA[j]
    aset.add(asum)
    aset.add(apro)

print(len(aset))
0