結果

問題 No.1701 half price
ユーザー flippergoflippergo
提出日時 2024-12-21 19:55:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 592 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,260 KB
最終ジャッジ日時 2024-12-21 19:55:56
合計ジャッジ時間 3,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 86 ms
74,120 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 83 ms
73,984 KB
testcase_05 AC 50 ms
61,568 KB
testcase_06 AC 373 ms
76,196 KB
testcase_07 AC 274 ms
76,260 KB
testcase_08 WA -
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 40 ms
52,608 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 39 ms
52,352 KB
testcase_15 AC 38 ms
52,480 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
52,480 KB
testcase_21 AC 62 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W = map(int,input().split())
A = list(map(int,input().split()))
ans = set()
for i in range(1<<N):
    B = A[:]
    cnt = 0
    ind = []
    for k in range(N):
        if (i>>k)&1:
            cnt += B[k]
            ind.append(k)
    if cnt==W:
        ans.add(i)
    elif cnt>W:
        for j in range(1<<len(ind)):
            cnt = 0
            for k in range(len(ind)):
                if (j>>k)&1:
                    cnt += B[ind[k]]//2
                else:
                    cnt += B[ind[k]]
            if cnt==W:
                ans.add(i)
                break
print(len(ans))
0