結果

問題 No.1463 Hungry Kanten
ユーザー 👑 KazunKazun
提出日時 2021-04-02 21:28:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 132,096 KB
最終ジャッジ日時 2024-12-23 23:17:45
合計ジャッジ時間 4,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 103 ms
77,384 KB
testcase_03 AC 422 ms
76,544 KB
testcase_04 AC 52 ms
61,568 KB
testcase_05 AC 622 ms
132,096 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 47 ms
59,520 KB
testcase_11 AC 55 ms
63,104 KB
testcase_12 AC 62 ms
65,536 KB
testcase_13 AC 57 ms
64,000 KB
testcase_14 AC 88 ms
76,672 KB
testcase_15 AC 68 ms
74,164 KB
testcase_16 AC 103 ms
77,824 KB
testcase_17 AC 141 ms
80,128 KB
testcase_18 AC 107 ms
77,424 KB
testcase_19 AC 327 ms
102,524 KB
testcase_20 AC 434 ms
110,472 KB
testcase_21 AC 54 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

def prod(A):
    x=1
    for a in A:
        x*=a
    return x

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

X=set()
for t in product((0,1),repeat=N):
    if sum(t)<K:
        continue

    B=[A[i] for i in range(N) if t[i]]
    X|={sum(B),prod(B)}
print(len(X))
0