結果

問題 No.1701 half price
ユーザー lloyzlloyz
提出日時 2021-11-14 15:20:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 710 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-11-29 18:45:04
合計ジャッジ時間 20,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
21,120 KB
testcase_01 AC 29 ms
17,700 KB
testcase_02 AC 1,307 ms
15,744 KB
testcase_03 AC 30 ms
15,872 KB
testcase_04 AC 1,302 ms
17,572 KB
testcase_05 AC 36 ms
16,000 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 29 ms
10,496 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 28 ms
10,496 KB
testcase_17 TLE -
testcase_18 AC 38 ms
10,624 KB
testcase_19 AC 55 ms
10,496 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, w = map(int, input().split())
A = list(map(int, input().split()))

ans_set = set()
for bit1 in range(1 << n):
    half_set = set()
    for i in range(n):
        if (bit1 >> i) & 1:
            half_set.add(i)
    for bit2 in range(1 << n):
        if (bit1 & bit2) != 0:
            continue
        if bit1 == 0 and bit2 == 0:
            continue
        not_half_set = set()
        for i in range(n):
            if (bit2 >> i) & 1:
                not_half_set.add(i)
        tmp = 0
        for i in half_set:
            tmp += A[i] // 2
        for i in not_half_set:
            tmp += A[i]
        if tmp == w:
            ans_set.add(bit1 + bit2)
print(len(ans_set))

0