結果

問題 No.1701 half price
ユーザー KudeKude
提出日時 2021-10-08 22:00:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 76,224 KB
最終ジャッジ日時 2024-07-23 04:13:39
合計ジャッジ時間 1,922 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,012 KB
testcase_01 AC 37 ms
52,756 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 44 ms
60,388 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 37 ms
52,636 KB
testcase_10 AC 36 ms
52,868 KB
testcase_11 WA -
testcase_12 AC 36 ms
52,560 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 36 ms
52,496 KB
testcase_16 AC 37 ms
52,700 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
52,944 KB
testcase_21 AC 65 ms
76,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
def solve(a, w):
    global ans
    n = len(a)
    for s in range(1 << n):
        x = 0
        for i in range(n):
            if s >> i & 1:
                x += a[i]
        ans += x == w

a = list(map(int, input().split()))
solve(a, w)
for i in range(n):
    solve(a[:i] + a[i + 1:], w - a[i] // 2)

print(ans)
0