結果

問題 No.1463 Hungry Kanten
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 13:02:54
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,525 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,320 KB
最終ジャッジ日時 2024-11-23 16:28:48
合計ジャッジ時間 6,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 83 ms
11,648 KB
testcase_03 AC 1,479 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 1,525 ms
31,320 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 31 ms
11,008 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 43 ms
11,008 KB
testcase_15 AC 33 ms
10,752 KB
testcase_16 AC 78 ms
11,776 KB
testcase_17 AC 182 ms
14,080 KB
testcase_18 AC 100 ms
11,648 KB
testcase_19 AC 720 ms
21,052 KB
testcase_20 AC 1,045 ms
30,232 KB
testcase_21 AC 29 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