結果

問題 No.1463 Hungry Kanten
ユーザー marroncastlemarroncastle
提出日時 2021-04-02 22:27:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 112,612 KB
最終ジャッジ日時 2024-06-06 09:24:18
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 62 ms
68,608 KB
testcase_03 AC 183 ms
75,904 KB
testcase_04 AC 49 ms
63,104 KB
testcase_05 AC 284 ms
112,612 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 36 ms
52,352 KB
testcase_10 AC 43 ms
59,520 KB
testcase_11 AC 45 ms
60,672 KB
testcase_12 AC 50 ms
62,464 KB
testcase_13 AC 50 ms
62,336 KB
testcase_14 AC 52 ms
64,512 KB
testcase_15 AC 53 ms
66,176 KB
testcase_16 AC 57 ms
70,016 KB
testcase_17 AC 66 ms
77,440 KB
testcase_18 AC 71 ms
76,672 KB
testcase_19 AC 137 ms
93,968 KB
testcase_20 AC 204 ms
97,292 KB
testcase_21 AC 42 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
ans = set()
for bit in range(1<<N):
  cnt = 0
  plus = 0
  multi = 1
  for i in range(N):
    if (bit>>i)%2:
      cnt += 1
      plus += A[i]
      multi *= A[i]
  if cnt<K:
    continue
  ans.add(plus)
  ans.add(multi)
print(len(ans))
0