結果

問題 No.1701 half price
ユーザー ああいいああいい
提出日時 2022-01-10 00:04:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 435 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 76,816 KB
最終ジャッジ日時 2024-11-14 10:37:55
合計ジャッジ時間 3,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,676 KB
testcase_01 AC 46 ms
60,756 KB
testcase_02 AC 83 ms
70,972 KB
testcase_03 AC 43 ms
59,108 KB
testcase_04 AC 84 ms
69,748 KB
testcase_05 AC 48 ms
62,104 KB
testcase_06 AC 540 ms
76,040 KB
testcase_07 AC 540 ms
76,460 KB
testcase_08 RE -
testcase_09 AC 43 ms
59,472 KB
testcase_10 AC 37 ms
52,392 KB
testcase_11 AC 43 ms
59,688 KB
testcase_12 AC 43 ms
60,184 KB
testcase_13 AC 44 ms
59,500 KB
testcase_14 AC 42 ms
59,108 KB
testcase_15 AC 43 ms
59,432 KB
testcase_16 AC 37 ms
52,472 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 39 ms
52,768 KB
testcase_21 AC 529 ms
75,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W = map(int,input().split())
a = list(map(int,input().split()))

ans = set()
for bit in range(3 ** N):
    nedan = 0
    b = 0
    for j in range(N):
        if bit % 3 == 0:
            pass
        elif bit % 3 == 1:
            nedan += a[j]
            b ^= (1 << j)
        else:
            nedan += a[j] // 2
            b ^= (1 << j)
        bit //= 3
    if nedan == W:
        ans.add(b)
if W == 0:ans -= 1
print(len(ans))
0