結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,940 KB
testcase_01 AC 38 ms
52,620 KB
testcase_02 AC 138 ms
76,432 KB
testcase_03 AC 37 ms
52,488 KB
testcase_04 AC 147 ms
76,212 KB
testcase_05 AC 53 ms
65,596 KB
testcase_06 AC 731 ms
76,396 KB
testcase_07 AC 723 ms
76,120 KB
testcase_08 WA -
testcase_09 AC 38 ms
53,380 KB
testcase_10 AC 36 ms
52,956 KB
testcase_11 AC 38 ms
53,372 KB
testcase_12 AC 38 ms
53,212 KB
testcase_13 AC 38 ms
53,684 KB
testcase_14 AC 39 ms
52,336 KB
testcase_15 AC 39 ms
53,428 KB
testcase_16 AC 38 ms
53,228 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
52,316 KB
testcase_21 AC 815 ms
76,480 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 k in range(M):
      if bit[k] == '1':
        c += B[k]//2
      else:
        c += B[k]
    if c == W:
      flg = True
      break
  if flg:
    ans += 1

print(ans)
0