結果

問題 No.1463 Hungry Kanten
ユーザー flippergoflippergo
提出日時 2024-10-26 09:52:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 1,324 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 112,808 KB
最終ジャッジ日時 2024-10-26 09:52:25
合計ジャッジ時間 3,339 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,944 KB
testcase_01 AC 34 ms
53,344 KB
testcase_02 AC 54 ms
69,604 KB
testcase_03 AC 181 ms
75,952 KB
testcase_04 AC 46 ms
63,296 KB
testcase_05 AC 260 ms
112,808 KB
testcase_06 AC 33 ms
52,124 KB
testcase_07 AC 32 ms
52,068 KB
testcase_08 AC 33 ms
52,068 KB
testcase_09 AC 36 ms
52,968 KB
testcase_10 AC 39 ms
60,528 KB
testcase_11 AC 43 ms
60,920 KB
testcase_12 AC 46 ms
63,512 KB
testcase_13 AC 45 ms
63,464 KB
testcase_14 AC 49 ms
66,028 KB
testcase_15 AC 50 ms
66,800 KB
testcase_16 AC 54 ms
71,108 KB
testcase_17 AC 64 ms
77,320 KB
testcase_18 AC 70 ms
76,748 KB
testcase_19 AC 133 ms
94,176 KB
testcase_20 AC 199 ms
97,288 KB
testcase_21 AC 39 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
B = set()
for i in range(1<<N):
    cnt = 0
    cum = 0
    prod = 1
    for k in range(N):
        if (i>>k) & 1:
            cnt += 1
            cum += A[k]
            prod *= A[k]
    if cnt>=K:
        B.add(cum)
        B.add(prod)
print(len(B))
0