結果

問題 No.1463 Hungry Kanten
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 13:02:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,413 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,060 KB
最終ジャッジ日時 2024-05-02 21:40:47
合計ジャッジ時間 6,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 78 ms
11,520 KB
testcase_03 AC 1,377 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 1,413 ms
31,060 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 40 ms
11,008 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 75 ms
11,648 KB
testcase_17 AC 168 ms
13,952 KB
testcase_18 AC 92 ms
11,520 KB
testcase_19 AC 633 ms
20,932 KB
testcase_20 AC 913 ms
30,184 KB
testcase_21 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
n,k=map(int,input().split())
a=list(map(int,input().split()))
ans=set()
for bit in product(range(2),repeat=n):
    if sum(bit)<k:
        continue
    tmp_plus=0
    tmp_times=1
    for i in range(n):
        if bit[i]==1:
            tmp_plus+=a[i]
            tmp_times*=a[i]
    ans.add(tmp_plus)
    ans.add(tmp_times)
print(len(ans))
0