結果

問題 No.1463 Hungry Kanten
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-04-02 22:40:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 115,088 KB
最終ジャッジ日時 2024-06-06 09:25:49
合計ジャッジ時間 2,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 67 ms
73,856 KB
testcase_03 AC 195 ms
76,032 KB
testcase_04 AC 50 ms
63,872 KB
testcase_05 AC 291 ms
115,088 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 40 ms
59,648 KB
testcase_11 AC 48 ms
62,720 KB
testcase_12 AC 52 ms
64,256 KB
testcase_13 AC 54 ms
64,356 KB
testcase_14 AC 56 ms
67,712 KB
testcase_15 AC 57 ms
68,352 KB
testcase_16 AC 61 ms
74,880 KB
testcase_17 AC 80 ms
79,104 KB
testcase_18 AC 76 ms
76,672 KB
testcase_19 AC 171 ms
93,328 KB
testcase_20 AC 224 ms
98,016 KB
testcase_21 AC 46 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
s = set()
for b in range(1 << n):
    l = []
    for i in range(n):
        if 1 << i & b:
            l.append(a[i])
    if len(l) < k: continue
    su, pr = 0, 1
    for i in l:
        su += i
        pr *= i
    s.add(su)
    s.add(pr)
print(len(s))
0