結果

問題 No.1701 half price
ユーザー neko_the_shadowneko_the_shadow
提出日時 2021-10-10 01:20:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 507 ms / 3,000 ms
コード長 416 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 81,504 KB
実行使用メモリ 75,928 KB
最終ジャッジ日時 2024-09-13 15:41:59
合計ジャッジ時間 3,420 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,472 KB
testcase_01 AC 44 ms
60,100 KB
testcase_02 AC 82 ms
70,900 KB
testcase_03 AC 43 ms
60,064 KB
testcase_04 AC 81 ms
70,928 KB
testcase_05 AC 49 ms
61,660 KB
testcase_06 AC 507 ms
75,928 KB
testcase_07 AC 505 ms
75,904 KB
testcase_08 AC 38 ms
52,428 KB
testcase_09 AC 42 ms
59,380 KB
testcase_10 AC 38 ms
53,544 KB
testcase_11 AC 42 ms
59,160 KB
testcase_12 AC 42 ms
60,692 KB
testcase_13 AC 41 ms
59,788 KB
testcase_14 AC 43 ms
59,420 KB
testcase_15 AC 42 ms
59,024 KB
testcase_16 AC 37 ms
52,336 KB
testcase_17 AC 37 ms
52,340 KB
testcase_18 AC 37 ms
51,748 KB
testcase_19 AC 37 ms
53,564 KB
testcase_20 AC 38 ms
52,392 KB
testcase_21 AC 490 ms
75,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if w == 0:
    c = a.count(0)
    print(2**c-1)
    exit(0)

ans = set()
for bit in range(3**n):
    x = bit
    total = 0
    key = 0
    for i in range(n):
        y = x % 3
        x //= 3
        if y == 1: total += a[i]
        if y == 2: total += a[i] // 2
        if y != 0: key |= (1 << i)
    if total == w: ans.add(key)

print(len(ans))
0