結果

問題 No.1701 half price
ユーザー lloyzlloyz
提出日時 2021-11-14 15:17:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 76,504 KB
最終ジャッジ日時 2024-11-29 18:35:29
合計ジャッジ時間 4,571 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,220 KB
testcase_01 AC 43 ms
59,856 KB
testcase_02 AC 148 ms
75,900 KB
testcase_03 AC 43 ms
59,200 KB
testcase_04 AC 146 ms
76,080 KB
testcase_05 AC 63 ms
69,624 KB
testcase_06 AC 746 ms
76,068 KB
testcase_07 AC 745 ms
76,504 KB
testcase_08 WA -
testcase_09 AC 43 ms
59,020 KB
testcase_10 AC 38 ms
52,416 KB
testcase_11 AC 43 ms
59,156 KB
testcase_12 AC 43 ms
59,592 KB
testcase_13 AC 43 ms
58,584 KB
testcase_14 AC 43 ms
59,200 KB
testcase_15 AC 43 ms
58,460 KB
testcase_16 AC 39 ms
52,972 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 39 ms
52,384 KB
testcase_21 AC 667 ms
76,140 KB
権限があれば一括ダウンロードができます

ソースコード

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:
            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