結果

問題 No.1463 Hungry Kanten
ユーザー moharan627moharan627
提出日時 2021-04-02 21:46:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 156,440 KB
最終ジャッジ日時 2024-06-06 09:18:08
合計ジャッジ時間 3,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,632 KB
testcase_01 AC 39 ms
53,376 KB
testcase_02 AC 71 ms
77,708 KB
testcase_03 AC 207 ms
76,304 KB
testcase_04 AC 52 ms
62,464 KB
testcase_05 AC 350 ms
156,440 KB
testcase_06 AC 40 ms
53,632 KB
testcase_07 AC 41 ms
53,888 KB
testcase_08 AC 41 ms
54,144 KB
testcase_09 AC 40 ms
53,376 KB
testcase_10 AC 46 ms
61,440 KB
testcase_11 AC 53 ms
65,536 KB
testcase_12 AC 57 ms
66,432 KB
testcase_13 AC 52 ms
65,152 KB
testcase_14 AC 61 ms
72,192 KB
testcase_15 AC 56 ms
69,888 KB
testcase_16 AC 73 ms
78,080 KB
testcase_17 AC 92 ms
81,664 KB
testcase_18 AC 85 ms
78,080 KB
testcase_19 AC 203 ms
108,988 KB
testcase_20 AC 272 ms
123,396 KB
testcase_21 AC 53 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LC(): return list(input())
def IC(): return [int(c) for c in input()]
def MI(): return map(int, sys.stdin.readline().split())
INF = float('inf')
def solve():
    N,K = MI()
    A = LI()
    from collections import defaultdict
    Num = defaultdict(lambda: 0)
    for i in range(2**N):
        Cook = []
        for j in range(N):
            if((i>>j) & 1):
                Cook.append(A[j])
        if(len(Cook)>=K):
            Num[sum(Cook)] = 1
            Tmp = 1
            for c in Cook:
                Tmp*=c
            Num[Tmp] = 1
    Ans = list(Num.keys())
    print(len(Ans))
    return
solve()
0