結果

問題 No.1701 half price
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-12 20:44:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 76,112 KB
最終ジャッジ日時 2024-11-29 21:54:30
合計ジャッジ時間 3,480 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,300 KB
testcase_01 AC 37 ms
58,960 KB
testcase_02 AC 114 ms
76,112 KB
testcase_03 AC 35 ms
52,416 KB
testcase_04 AC 100 ms
75,868 KB
testcase_05 AC 46 ms
61,344 KB
testcase_06 AC 567 ms
75,924 KB
testcase_07 AC 584 ms
75,704 KB
testcase_08 WA -
testcase_09 AC 39 ms
59,012 KB
testcase_10 AC 33 ms
52,412 KB
testcase_11 AC 35 ms
52,668 KB
testcase_12 AC 37 ms
52,744 KB
testcase_13 AC 34 ms
51,984 KB
testcase_14 AC 34 ms
51,928 KB
testcase_15 AC 40 ms
58,524 KB
testcase_16 AC 34 ms
52,772 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 33 ms
51,732 KB
testcase_21 AC 534 ms
75,692 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):
    for j in product([0,1],repeat=i.count(1)):
        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