結果

問題 No.1701 half price
ユーザー titiatitia
提出日時 2021-10-08 22:05:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 406 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 82,740 KB
最終ジャッジ日時 2024-07-23 04:23:44
合計ジャッジ時間 6,412 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
61,024 KB
testcase_01 AC 42 ms
60,848 KB
testcase_02 AC 610 ms
76,220 KB
testcase_03 AC 43 ms
60,504 KB
testcase_04 AC 637 ms
76,080 KB
testcase_05 AC 47 ms
62,556 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W=map(int,input().split())
A=list(map(int,input().split()))
ANS=set()

for i in range(1<<N):
    B=[]
    for j in range(N):
        if i & (1<<j)==0:
            B.append(A[j])
        else:
            B.append(A[j]//2)

    for j in range(1<<N):
        sc=0

        for k in range(N):
            if j & (1<<k)!=0:
                sc+=B[k]

        if sc==W:
            ANS.add(j)

print(len(ANS))
0