結果

問題 No.1701 half price
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-08 22:11:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 423 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 76,016 KB
最終ジャッジ日時 2024-07-23 04:36:09
合計ジャッジ時間 1,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,160 KB
testcase_01 AC 37 ms
52,688 KB
testcase_02 AC 58 ms
69,064 KB
testcase_03 AC 37 ms
53,208 KB
testcase_04 AC 59 ms
70,072 KB
testcase_05 AC 37 ms
53,152 KB
testcase_06 AC 59 ms
73,972 KB
testcase_07 AC 79 ms
76,016 KB
testcase_08 WA -
testcase_09 AC 36 ms
52,284 KB
testcase_10 AC 37 ms
52,152 KB
testcase_11 AC 38 ms
52,136 KB
testcase_12 AC 37 ms
52,124 KB
testcase_13 AC 37 ms
53,876 KB
testcase_14 AC 36 ms
52,336 KB
testcase_15 AC 37 ms
53,016 KB
testcase_16 AC 36 ms
52,136 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
53,344 KB
testcase_21 AC 58 ms
75,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,w = map(int,input().split())
A = list(map(int,input().split()))
ans = 0

for i in range(1<<n):
    
    s = set()
    s.add(0)
    for j in range(n):
        if i >> j & 1:
            ns = set()
            for k in s:
                if k+A[j] <= w:
                    ns.add(k+A[j])
                if k+A[j]//2 <= w:
                    ns.add(k+A[j]//2)
            s = ns
    if w in s:
        ans += 1
print(ans)
0