結果

問題 No.1701 half price
ユーザー tobusakanatobusakana
提出日時 2022-12-03 13:45:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 696 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 75,860 KB
最終ジャッジ日時 2024-10-10 16:18:04
合計ジャッジ時間 2,313 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,248 KB
testcase_01 AC 37 ms
52,800 KB
testcase_02 AC 49 ms
64,168 KB
testcase_03 AC 36 ms
53,088 KB
testcase_04 AC 49 ms
64,232 KB
testcase_05 AC 38 ms
52,408 KB
testcase_06 AC 53 ms
69,688 KB
testcase_07 AC 72 ms
75,756 KB
testcase_08 WA -
testcase_09 AC 38 ms
52,540 KB
testcase_10 AC 38 ms
52,188 KB
testcase_11 AC 37 ms
53,308 KB
testcase_12 AC 37 ms
52,704 KB
testcase_13 AC 37 ms
52,564 KB
testcase_14 AC 37 ms
52,264 KB
testcase_15 AC 41 ms
60,084 KB
testcase_16 AC 36 ms
52,904 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
52,692 KB
testcase_21 AC 351 ms
75,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W = map(int,input().split())
A = list(map(lambda x:int(x) // 2,input().split()))

ans = 0
for status in range(1 << N):
    items = []
    for i in range(N):
        if (status >> i) & 1:
            items.append(A[i])
    rest = W - sum(items)
    if rest < 0:
        continue
    if rest == 0:
        ans += 1
        continue
    # itemsから幾つかを選んでrestに出来るか
    M = len(items)
    for bits in range(1 << M):
        val = 0
        for i in range(N):
            if (bits >> i) & 1:
                val += items[i]
                if val >= rest:
                    break
        if val == rest:
            ans += 1
            break
                
print(ans)
0