結果

問題 No.1463 Hungry Kanten
ユーザー LiesegangLiesegang
提出日時 2021-04-02 22:40:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 126,364 KB
最終ジャッジ日時 2024-06-06 09:25:46
合計ジャッジ時間 2,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,660 KB
testcase_01 AC 38 ms
52,432 KB
testcase_02 AC 68 ms
76,832 KB
testcase_03 AC 195 ms
76,032 KB
testcase_04 AC 36 ms
52,680 KB
testcase_05 AC 301 ms
126,364 KB
testcase_06 AC 38 ms
52,664 KB
testcase_07 AC 38 ms
53,540 KB
testcase_08 AC 37 ms
53,248 KB
testcase_09 AC 36 ms
52,408 KB
testcase_10 AC 37 ms
52,324 KB
testcase_11 AC 41 ms
59,300 KB
testcase_12 AC 44 ms
60,548 KB
testcase_13 AC 41 ms
58,180 KB
testcase_14 AC 55 ms
70,456 KB
testcase_15 AC 43 ms
59,876 KB
testcase_16 AC 69 ms
77,640 KB
testcase_17 AC 79 ms
79,348 KB
testcase_18 AC 67 ms
77,616 KB
testcase_19 AC 182 ms
95,872 KB
testcase_20 AC 209 ms
104,332 KB
testcase_21 AC 41 ms
59,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

def product(a):
  ans = 1
  for i in a:
    ans *= i
  return ans

n, k = list(map(int, input().split(" ")))
a = list(map(int, input().split(" ")))

s = set()

for i in range(k, n + 1):
  for j in itertools.combinations(a, i):
    s.add(sum(j))
    s.add(product(j))

print(len(s))
0