結果

問題 No.1463 Hungry Kanten
ユーザー ygd.
提出日時 2021-04-02 21:31:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 152,196 KB
最終ジャッジ日時 2025-06-20 01:30:51
合計ジャッジ時間 3,040 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,K = map(int,input().split())
A = list(map(int,input().split()))

ans = set([])
for num in range(K,N+1):
    L = list(itertools.combinations(A,num))
    for X in L:
        ans.add(sum(X))
        temp = 1
        for x in X:
            temp *= x
        ans.add(temp)
#print(ans)
print(len(ans))
0