結果

問題 No.1701 half price
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 19:04:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 477 ms / 3,000 ms
コード長 485 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-11-24 02:23:50
合計ジャッジ時間 3,883 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 41 ms
58,240 KB
testcase_02 AC 97 ms
75,660 KB
testcase_03 AC 42 ms
58,240 KB
testcase_04 AC 97 ms
75,648 KB
testcase_05 AC 54 ms
63,744 KB
testcase_06 AC 462 ms
75,876 KB
testcase_07 AC 477 ms
76,364 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 41 ms
58,368 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 40 ms
58,752 KB
testcase_12 AC 45 ms
58,624 KB
testcase_13 AC 43 ms
58,240 KB
testcase_14 AC 41 ms
57,984 KB
testcase_15 AC 41 ms
57,984 KB
testcase_16 AC 36 ms
51,840 KB
testcase_17 AC 475 ms
76,928 KB
testcase_18 AC 56 ms
67,456 KB
testcase_19 AC 68 ms
75,904 KB
testcase_20 AC 38 ms
51,968 KB
testcase_21 AC 463 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