結果

問題 No.1701 half price
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-12 20:48:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 611 ms / 3,000 ms
コード長 546 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 76,420 KB
最終ジャッジ日時 2024-11-29 21:59:15
合計ジャッジ時間 3,980 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,156 KB
testcase_01 AC 44 ms
59,884 KB
testcase_02 AC 124 ms
76,420 KB
testcase_03 AC 40 ms
52,076 KB
testcase_04 AC 103 ms
76,264 KB
testcase_05 AC 50 ms
61,836 KB
testcase_06 AC 611 ms
75,784 KB
testcase_07 AC 606 ms
75,820 KB
testcase_08 AC 40 ms
52,252 KB
testcase_09 AC 45 ms
58,756 KB
testcase_10 AC 40 ms
52,012 KB
testcase_11 AC 41 ms
52,396 KB
testcase_12 AC 42 ms
53,300 KB
testcase_13 AC 41 ms
53,132 KB
testcase_14 AC 41 ms
52,712 KB
testcase_15 AC 45 ms
60,336 KB
testcase_16 AC 41 ms
52,348 KB
testcase_17 AC 53 ms
65,140 KB
testcase_18 AC 41 ms
53,088 KB
testcase_19 AC 48 ms
60,496 KB
testcase_20 AC 41 ms
53,012 KB
testcase_21 AC 607 ms
75,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
n,w=map(int,input().split())
a=list(map(int,input().split()))
ans=0

for i in product([0,1],repeat=n):
    t=i.count(1)
    if t == 0:
        continue
    for j in product([0,1],repeat=t):
        indj=0
        cntw=0
        for k in range(n):
            if i[k] == 1:
                if j[indj] == 1:
                    cntw += a[k]//2
                else:
                    cntw += a[k]
                indj+=1
        
        if cntw == w:
            ans+=1
            break
                
print(ans)
0