結果

問題 No.1701 half price
ユーザー H3PO4H3PO4
提出日時 2021-10-08 22:07:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 421 ms / 3,000 ms
コード長 542 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 76,392 KB
最終ジャッジ日時 2024-07-23 04:27:34
合計ジャッジ時間 2,977 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,492 KB
testcase_01 AC 37 ms
53,356 KB
testcase_02 AC 76 ms
71,568 KB
testcase_03 AC 37 ms
52,208 KB
testcase_04 AC 77 ms
72,008 KB
testcase_05 AC 46 ms
62,416 KB
testcase_06 AC 421 ms
76,392 KB
testcase_07 AC 316 ms
75,984 KB
testcase_08 AC 36 ms
52,988 KB
testcase_09 AC 40 ms
59,860 KB
testcase_10 AC 35 ms
53,360 KB
testcase_11 AC 36 ms
53,504 KB
testcase_12 AC 36 ms
52,824 KB
testcase_13 AC 36 ms
53,036 KB
testcase_14 AC 37 ms
53,284 KB
testcase_15 AC 40 ms
60,160 KB
testcase_16 AC 36 ms
52,608 KB
testcase_17 AC 43 ms
60,960 KB
testcase_18 AC 36 ms
53,312 KB
testcase_19 AC 41 ms
59,744 KB
testcase_20 AC 36 ms
52,376 KB
testcase_21 AC 418 ms
75,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, W = map(int, input().split())
A = tuple(map(int, input().split()))

ans = 0
for b in range(1, 1 << N):
    # 別途c = 0のとき
    s = 0
    for i in range(N):
        if (b >> i) & 1:
            s += A[i]
    if s == W:
        ans += 1
        continue
    c = b
    while c:
        s = 0
        for i in range(N):
            if (c >> i) & 1:
                s += A[i] // 2
            elif (b >> i) & 1:
                s += A[i]
        if s == W:
            ans += 1
            break
        c -= 1
        c &= b
print(ans)
0