結果

問題 No.1463 Hungry Kanten
ユーザー mesame3993mesame3993
提出日時 2021-11-19 16:13:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 115,692 KB
最終ジャッジ日時 2024-06-09 23:13:45
合計ジャッジ時間 2,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,032 KB
testcase_01 AC 34 ms
52,248 KB
testcase_02 AC 52 ms
72,908 KB
testcase_03 AC 156 ms
75,760 KB
testcase_04 AC 45 ms
61,528 KB
testcase_05 AC 244 ms
115,692 KB
testcase_06 AC 35 ms
53,468 KB
testcase_07 AC 36 ms
53,068 KB
testcase_08 AC 34 ms
52,676 KB
testcase_09 AC 34 ms
53,620 KB
testcase_10 AC 37 ms
59,944 KB
testcase_11 AC 41 ms
61,164 KB
testcase_12 AC 40 ms
62,676 KB
testcase_13 AC 40 ms
61,324 KB
testcase_14 AC 44 ms
66,252 KB
testcase_15 AC 45 ms
68,180 KB
testcase_16 AC 50 ms
73,172 KB
testcase_17 AC 63 ms
79,704 KB
testcase_18 AC 70 ms
76,568 KB
testcase_19 AC 130 ms
92,568 KB
testcase_20 AC 178 ms
99,360 KB
testcase_21 AC 46 ms
61,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from sys import stdin
  readline=stdin.readline
  n, k = map(int, readline().split())
  A = list(map(int, readline().split()))
  ans = set()
  for i in range(2**n):
    wa, seki = 0, 1
    cnt = 0
    for j in range(n):
      if (i>>j) & 1:
        cnt += 1
        wa += A[j]
        seki *= A[j]
    if cnt < k:
      continue
    ans.add(wa)
    ans.add(seki)
  print(len(ans))
main()
0