結果

問題 No.1701 half price
ユーザー neko_the_shadowneko_the_shadow
提出日時 2021-10-10 01:18:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-09-13 15:40:23
合計ジャッジ時間 3,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 45 ms
58,752 KB
testcase_02 AC 88 ms
69,760 KB
testcase_03 AC 44 ms
59,264 KB
testcase_04 AC 85 ms
69,632 KB
testcase_05 AC 50 ms
60,928 KB
testcase_06 AC 512 ms
75,660 KB
testcase_07 AC 509 ms
75,776 KB
testcase_08 WA -
testcase_09 AC 44 ms
59,008 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 45 ms
59,008 KB
testcase_12 AC 45 ms
59,264 KB
testcase_13 AC 44 ms
58,880 KB
testcase_14 AC 44 ms
58,624 KB
testcase_15 AC 45 ms
59,008 KB
testcase_16 AC 39 ms
52,096 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 40 ms
51,712 KB
testcase_21 AC 501 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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