結果

問題 No.1701 half price
ユーザー kohei2019kohei2019
提出日時 2023-06-04 17:31:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,376 KB
最終ジャッジ日時 2024-06-09 03:57:40
合計ジャッジ時間 1,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,224 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
59,648 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 31 ms
51,968 KB
testcase_10 AC 31 ms
51,584 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 31 ms
52,352 KB
testcase_15 AC 33 ms
52,224 KB
testcase_16 AC 31 ms
52,096 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 30 ms
51,968 KB
testcase_21 AC 58 ms
68,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W = map(int,input().split())
lsA = list(map(int,input().split()))
vals = set()
for i in range(N):
    lsA0 = lsA[:]
    lsA0[i] = lsA0[i]//2
    for j in range(2**N):
        cost = 0
        for k in range(N):
            if (j>>k) & 1:
                cost += lsA0[k]
        if cost == W:
            vals.add(j)
for j in range(2**N):
    cost = 0
    for k in range(N):
        if (j>>k) & 1:
            cost += lsA[k]
    if cost == W:
        vals.add(j)
print(len(vals))
0