結果

問題 No.1701 half price
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-08 19:59:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 687 ms / 3,000 ms
コード長 268 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 77,072 KB
最終ジャッジ日時 2024-08-08 19:59:18
合計ジャッジ時間 5,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,304 KB
testcase_01 AC 37 ms
53,448 KB
testcase_02 AC 190 ms
76,732 KB
testcase_03 AC 38 ms
53,504 KB
testcase_04 AC 195 ms
76,968 KB
testcase_05 AC 86 ms
76,336 KB
testcase_06 AC 687 ms
76,756 KB
testcase_07 AC 652 ms
77,072 KB
testcase_08 AC 36 ms
52,928 KB
testcase_09 AC 38 ms
53,072 KB
testcase_10 AC 36 ms
53,348 KB
testcase_11 AC 38 ms
53,008 KB
testcase_12 AC 38 ms
53,052 KB
testcase_13 AC 39 ms
52,572 KB
testcase_14 AC 37 ms
53,540 KB
testcase_15 AC 38 ms
53,152 KB
testcase_16 AC 37 ms
53,196 KB
testcase_17 AC 416 ms
76,792 KB
testcase_18 AC 84 ms
76,196 KB
testcase_19 AC 99 ms
76,460 KB
testcase_20 AC 35 ms
52,804 KB
testcase_21 AC 657 ms
77,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,w=map(int,input().split())
a=list(map(int,input().split()))
c=0
for i in range(1,1<<n):
  b=[a[j] for j in range(n) if (i>>j)&1]
  B=sum(b)
  f=0
  m=len(b)
  for ii in range(1<<m):
    bb=sum(b[jj]//2 for jj in range(m) if (ii>>jj)&1)
    f|=B-bb==w
  c+=f
print(c)
0