結果

問題 No.1463 Hungry Kanten
ユーザー roarisroaris
提出日時 2021-04-02 21:32:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 123,456 KB
最終ジャッジ日時 2024-06-06 09:10:44
合計ジャッジ時間 3,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 74 ms
77,288 KB
testcase_03 AC 230 ms
76,416 KB
testcase_04 AC 58 ms
67,328 KB
testcase_05 AC 327 ms
123,456 KB
testcase_06 AC 39 ms
53,632 KB
testcase_07 AC 39 ms
53,504 KB
testcase_08 AC 39 ms
54,016 KB
testcase_09 AC 38 ms
53,632 KB
testcase_10 AC 47 ms
61,184 KB
testcase_11 AC 54 ms
65,408 KB
testcase_12 AC 59 ms
67,712 KB
testcase_13 AC 55 ms
66,816 KB
testcase_14 AC 64 ms
72,960 KB
testcase_15 AC 63 ms
71,040 KB
testcase_16 AC 73 ms
77,824 KB
testcase_17 AC 95 ms
80,128 KB
testcase_18 AC 83 ms
76,800 KB
testcase_19 AC 185 ms
94,552 KB
testcase_20 AC 247 ms
104,028 KB
testcase_21 AC 53 ms
64,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, K = map(int, input().split())
A = list(map(int, input().split()))
s = set()

for S in range(1<<N):
    l = []
    
    for i in range(N):
        if (S>>i)&1:
            l.append(A[i])
    
    if len(l)<K:
        continue
    
    s.add(sum(l))
    v = 1
    
    for li in l:
        v *= li
    
    s.add(v)

print(len(s))
0