結果

問題 No.1701 half price
ユーザー O2MTO2MT
提出日時 2021-10-08 22:13:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-23 04:39:41
合計ジャッジ時間 4,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,356 KB
testcase_01 AC 37 ms
53,548 KB
testcase_02 AC 137 ms
76,152 KB
testcase_03 AC 39 ms
52,920 KB
testcase_04 AC 144 ms
76,244 KB
testcase_05 AC 51 ms
65,816 KB
testcase_06 AC 723 ms
76,260 KB
testcase_07 AC 731 ms
76,288 KB
testcase_08 WA -
testcase_09 AC 38 ms
53,852 KB
testcase_10 AC 37 ms
53,056 KB
testcase_11 AC 38 ms
52,872 KB
testcase_12 AC 37 ms
52,612 KB
testcase_13 AC 37 ms
53,668 KB
testcase_14 AC 37 ms
53,160 KB
testcase_15 AC 38 ms
52,616 KB
testcase_16 AC 37 ms
53,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
53,416 KB
testcase_21 AC 805 ms
76,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W = map(int,input().split())
A = list(map(int,input().split()))
ans = 0

for i in range(2**N):
  bit = bin(i)[2:].zfill(N)
  B = []
  for j in range(N):
    if bit[j] == '1':
      B.append(A[j])
  M = len(B)
  flg = False
  for j in range(2**M):
    bit = bin(j)[2:].zfill(M)
    c = 0
    for j in range(M):
      if bit[j] == '1':
        c += B[j]//2
      else:
        c += B[j]
    if c == W:
      flg = True
      break
  if flg:
    ans += 1

print(ans)
0