結果

問題 No.1701 half price
ユーザー titan23titan23
提出日時 2022-07-03 03:49:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 416 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 135,808 KB
最終ジャッジ日時 2024-11-28 10:22:44
合計ジャッジ時間 17,194 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,964 KB
testcase_01 AC 43 ms
65,024 KB
testcase_02 AC 594 ms
81,408 KB
testcase_03 AC 44 ms
135,808 KB
testcase_04 AC 575 ms
81,920 KB
testcase_05 AC 50 ms
61,440 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 WA -
testcase_09 AC 44 ms
60,032 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 45 ms
59,776 KB
testcase_12 AC 45 ms
60,928 KB
testcase_13 AC 44 ms
60,544 KB
testcase_14 AC 44 ms
59,948 KB
testcase_15 AC 44 ms
59,520 KB
testcase_16 AC 37 ms
52,352 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
51,840 KB
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

n, w = map(int, input().split())
A = list(map(int, input().split()))
ans = set()
for i in range(1 << n):
  B = A[:]
  for j in range(n):
    if i >> j & 1:
      B[j] //= 2

  for k in range(1 << n):
    tmp = 0
    for j in range(n):
      if k >> j & 1:
        tmp += B[j]
    if tmp == w:
      ans.add(k)

print(len(ans))
0