結果

問題 No.1463 Hungry Kanten
ユーザー MottchanMottchan
提出日時 2023-03-26 19:06:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 163,540 KB
最終ジャッジ日時 2024-09-19 09:57:09
合計ジャッジ時間 3,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,696 KB
testcase_01 AC 34 ms
52,116 KB
testcase_02 AC 65 ms
77,800 KB
testcase_03 AC 309 ms
125,248 KB
testcase_04 AC 44 ms
61,336 KB
testcase_05 AC 326 ms
163,540 KB
testcase_06 AC 34 ms
52,000 KB
testcase_07 AC 34 ms
54,024 KB
testcase_08 AC 35 ms
53,476 KB
testcase_09 AC 34 ms
53,424 KB
testcase_10 AC 39 ms
59,728 KB
testcase_11 AC 46 ms
63,436 KB
testcase_12 AC 49 ms
64,720 KB
testcase_13 AC 45 ms
64,356 KB
testcase_14 AC 59 ms
72,516 KB
testcase_15 AC 53 ms
71,720 KB
testcase_16 AC 65 ms
78,104 KB
testcase_17 AC 83 ms
82,548 KB
testcase_18 AC 81 ms
77,264 KB
testcase_19 AC 183 ms
114,068 KB
testcase_20 AC 240 ms
128,764 KB
testcase_21 AC 45 ms
62,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
n,k=map(int, input().split())
num = list(map(int, input().split()))

ans=[]
for pro in product((0, 1), repeat=n):
    a=0
    b=1
    if sum(pro) >= k:
        for i in range(n):
            if pro[i]:
                a += num[i]
                b *= num[i]
        ans.append(a)
        ans.append(b)

print(len(set(ans)))
0