結果

問題 No.1463 Hungry Kanten
ユーザー O2MTO2MT
提出日時 2021-04-15 21:35:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 142,432 KB
最終ジャッジ日時 2024-07-02 05:51:44
合計ジャッジ時間 3,558 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 83 ms
77,056 KB
testcase_03 AC 313 ms
76,032 KB
testcase_04 AC 47 ms
60,928 KB
testcase_05 AC 449 ms
142,432 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 47 ms
61,312 KB
testcase_11 AC 48 ms
61,312 KB
testcase_12 AC 60 ms
66,688 KB
testcase_13 AC 51 ms
62,976 KB
testcase_14 AC 67 ms
72,576 KB
testcase_15 AC 62 ms
71,168 KB
testcase_16 AC 79 ms
77,568 KB
testcase_17 AC 103 ms
80,256 KB
testcase_18 AC 104 ms
76,544 KB
testcase_19 AC 257 ms
101,984 KB
testcase_20 AC 348 ms
112,884 KB
testcase_21 AC 49 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
ansSet = set()
for b in range(2**N):
    bit = bin(b)[2:].zfill(N)
    if bit.count('1') < K:
        continue
    s,x = 0,1
    for i in range(len(bit)):
        if bit[i] == '1':
            s += A[i]
            x *= A[i]
    ansSet.add(s)
    ansSet.add(x)
ansList = list(ansSet)
print(len(ansList))
0