結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,504 KB
testcase_01 AC 48 ms
53,504 KB
testcase_02 AC 99 ms
77,824 KB
testcase_03 AC 248 ms
76,416 KB
testcase_04 AC 62 ms
62,592 KB
testcase_05 AC 455 ms
156,184 KB
testcase_06 AC 49 ms
53,376 KB
testcase_07 AC 48 ms
53,504 KB
testcase_08 AC 50 ms
53,632 KB
testcase_09 AC 50 ms
53,376 KB
testcase_10 AC 60 ms
61,696 KB
testcase_11 AC 71 ms
64,768 KB
testcase_12 AC 72 ms
66,432 KB
testcase_13 AC 67 ms
65,152 KB
testcase_14 AC 83 ms
72,320 KB
testcase_15 AC 74 ms
69,504 KB
testcase_16 AC 96 ms
78,208 KB
testcase_17 AC 118 ms
81,920 KB
testcase_18 AC 111 ms
78,080 KB
testcase_19 AC 251 ms
108,712 KB
testcase_20 AC 346 ms
123,120 KB
testcase_21 AC 69 ms
65,024 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