結果

問題 No.1701 half price
ユーザー titiatitia
提出日時 2021-10-08 22:17:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 3,000 ms
コード長 431 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 76,432 KB
最終ジャッジ日時 2024-07-23 04:45:43
合計ジャッジ時間 2,105 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,192 KB
testcase_01 AC 36 ms
52,436 KB
testcase_02 AC 55 ms
70,636 KB
testcase_03 AC 37 ms
52,612 KB
testcase_04 AC 62 ms
76,040 KB
testcase_05 AC 43 ms
59,812 KB
testcase_06 AC 70 ms
75,832 KB
testcase_07 AC 96 ms
76,312 KB
testcase_08 AC 38 ms
53,424 KB
testcase_09 AC 36 ms
52,956 KB
testcase_10 AC 37 ms
52,860 KB
testcase_11 AC 37 ms
52,348 KB
testcase_12 AC 36 ms
52,492 KB
testcase_13 AC 36 ms
52,652 KB
testcase_14 AC 36 ms
52,212 KB
testcase_15 AC 37 ms
52,596 KB
testcase_16 AC 36 ms
52,444 KB
testcase_17 AC 36 ms
51,948 KB
testcase_18 AC 36 ms
53,816 KB
testcase_19 AC 37 ms
52,200 KB
testcase_20 AC 36 ms
52,068 KB
testcase_21 AC 56 ms
76,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if W==0:
    X=0
    for a in A:
        if a==0:
            X+=1
    print(pow(2,X)-1)
    exit()


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

    for k in range(N):
        AD=[]
        if j & (1<<k)!=0:
            for x in sc:
                AD.append(x+A[k])
                AD.append(x+A[k]//2)
            sc=set(AD)

    if W in sc:
        ANS+=1

print(ANS)
0