結果

問題 No.1463 Hungry Kanten
ユーザー 👑 KazunKazun
提出日時 2021-04-02 21:28:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 608 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 132,096 KB
最終ジャッジ日時 2024-06-06 09:08:21
合計ジャッジ時間 3,989 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 96 ms
76,928 KB
testcase_03 AC 405 ms
76,928 KB
testcase_04 AC 49 ms
61,184 KB
testcase_05 AC 608 ms
132,096 KB
testcase_06 AC 40 ms
53,244 KB
testcase_07 AC 39 ms
52,384 KB
testcase_08 AC 41 ms
52,944 KB
testcase_09 AC 39 ms
52,408 KB
testcase_10 AC 46 ms
60,780 KB
testcase_11 AC 52 ms
63,232 KB
testcase_12 AC 57 ms
65,536 KB
testcase_13 AC 53 ms
64,000 KB
testcase_14 AC 87 ms
76,800 KB
testcase_15 AC 64 ms
73,856 KB
testcase_16 AC 99 ms
77,824 KB
testcase_17 AC 132 ms
79,872 KB
testcase_18 AC 104 ms
77,312 KB
testcase_19 AC 324 ms
102,644 KB
testcase_20 AC 413 ms
110,460 KB
testcase_21 AC 52 ms
62,452 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