結果

問題 No.1701 half price
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 19:04:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 557 ms / 3,000 ms
コード長 485 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-05-03 05:09:50
合計ジャッジ時間 4,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 45 ms
58,368 KB
testcase_02 AC 106 ms
75,904 KB
testcase_03 AC 43 ms
58,624 KB
testcase_04 AC 103 ms
75,952 KB
testcase_05 AC 55 ms
63,488 KB
testcase_06 AC 514 ms
76,032 KB
testcase_07 AC 557 ms
76,740 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 44 ms
58,240 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 43 ms
58,624 KB
testcase_12 AC 45 ms
58,752 KB
testcase_13 AC 45 ms
58,880 KB
testcase_14 AC 43 ms
58,880 KB
testcase_15 AC 44 ms
58,240 KB
testcase_16 AC 39 ms
52,096 KB
testcase_17 AC 482 ms
77,312 KB
testcase_18 AC 57 ms
68,096 KB
testcase_19 AC 71 ms
76,332 KB
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 508 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
n,w=map(int,input().split())
a=list(map(int,input().split()))
ans=set()
for bit in product(range(3),repeat=n):
    if sum(bit)==0:
        continue
    tmp=0
    for i in range(n):
        if bit[i]==1:
            tmp+=a[i]
        elif bit[i]==2:
            tmp+=a[i]//2
    if tmp==w:
        sel=[]
        for i in range(n):
            if bit[i]!=0:
                sel.append(i)
        sel=tuple(sel)
        ans.add(sel)
print(len(ans))
        
0