結果

問題 No.1463 Hungry Kanten
ユーザー Kite_kumaKite_kuma
提出日時 2021-04-03 02:50:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 112,448 KB
最終ジャッジ日時 2024-06-06 11:55:08
合計ジャッジ時間 2,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,328 KB
testcase_01 AC 37 ms
51,328 KB
testcase_02 AC 57 ms
68,736 KB
testcase_03 AC 187 ms
76,032 KB
testcase_04 AC 54 ms
63,232 KB
testcase_05 AC 275 ms
112,448 KB
testcase_06 AC 34 ms
51,584 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 40 ms
59,776 KB
testcase_11 AC 42 ms
60,544 KB
testcase_12 AC 47 ms
62,336 KB
testcase_13 AC 47 ms
62,208 KB
testcase_14 AC 51 ms
64,256 KB
testcase_15 AC 52 ms
65,920 KB
testcase_16 AC 57 ms
69,888 KB
testcase_17 AC 77 ms
77,312 KB
testcase_18 AC 84 ms
76,800 KB
testcase_19 AC 149 ms
93,832 KB
testcase_20 AC 205 ms
97,016 KB
testcase_21 AC 46 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
se = set()
for bits in range(1 << n):
    cnt = 0
    s = 0
    p = 1
    for j in range(n):
        if bits & (1 << j):
            cnt += 1
            p *= a[j]
            s += a[j]
    if cnt < k:
        continue
    se.add(s)
    se.add(p)

print(len(se))
0