結果

問題 No.1701 half price
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-08 22:13:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 547 ms / 3,000 ms
コード長 486 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 76,144 KB
最終ジャッジ日時 2024-07-23 04:39:46
合計ジャッジ時間 3,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,160 KB
testcase_01 AC 44 ms
59,400 KB
testcase_02 AC 84 ms
75,920 KB
testcase_03 AC 42 ms
61,296 KB
testcase_04 AC 85 ms
76,028 KB
testcase_05 AC 47 ms
61,728 KB
testcase_06 AC 542 ms
75,844 KB
testcase_07 AC 547 ms
76,080 KB
testcase_08 AC 37 ms
52,688 KB
testcase_09 AC 40 ms
59,668 KB
testcase_10 AC 35 ms
53,568 KB
testcase_11 AC 42 ms
59,536 KB
testcase_12 AC 41 ms
59,676 KB
testcase_13 AC 42 ms
59,400 KB
testcase_14 AC 41 ms
59,592 KB
testcase_15 AC 42 ms
59,612 KB
testcase_16 AC 36 ms
53,552 KB
testcase_17 AC 160 ms
76,024 KB
testcase_18 AC 46 ms
62,264 KB
testcase_19 AC 48 ms
64,020 KB
testcase_20 AC 36 ms
52,628 KB
testcase_21 AC 522 ms
76,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, w = map(int, input().split())
A =list(map(int, input().split()))
ans = 0
import itertools
used = set()
for p in itertools.product(range(3), repeat=n):
    s = 0
    t = 0
    for j in range(n):
        if p[j] == 0:
            continue
        elif p[j] == 1:
            s += A[j]
            t |= (1<<j)
        else:
            s += A[j]//2
            t |= (1<<j)
    if t == 0:
        continue
    if s == w and t not in used:
        ans += 1
        used.add(t)
print(ans)
0