結果

問題 No.1463 Hungry Kanten
ユーザー otsunekootsuneko
提出日時 2021-05-05 00:39:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 158,888 KB
最終ジャッジ日時 2024-07-23 19:28:01
合計ジャッジ時間 3,228 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,748 KB
testcase_01 AC 45 ms
54,908 KB
testcase_02 AC 80 ms
78,760 KB
testcase_03 AC 273 ms
125,712 KB
testcase_04 AC 43 ms
55,944 KB
testcase_05 AC 380 ms
158,888 KB
testcase_06 AC 43 ms
54,772 KB
testcase_07 AC 42 ms
55,256 KB
testcase_08 AC 44 ms
56,588 KB
testcase_09 AC 43 ms
54,752 KB
testcase_10 AC 43 ms
55,812 KB
testcase_11 AC 50 ms
62,864 KB
testcase_12 AC 52 ms
64,184 KB
testcase_13 AC 48 ms
61,364 KB
testcase_14 AC 71 ms
77,328 KB
testcase_15 AC 51 ms
63,128 KB
testcase_16 AC 77 ms
79,004 KB
testcase_17 AC 101 ms
84,316 KB
testcase_18 AC 74 ms
78,484 KB
testcase_19 AC 212 ms
112,836 KB
testcase_20 AC 250 ms
126,624 KB
testcase_21 AC 51 ms
62,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import functools
import operator

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

cmb = []
for i in range(K,N+1):
    tmp = list(itertools.combinations(A,i))
    for t in tmp:
        cmb.append(t)

ans = set([])
for c in cmb:
    ans.add(sum(c))
    ans.add(functools.reduce(operator.mul, c))

print(len(ans))
0