結果

問題 No.1701 half price
ユーザー gr1msl3ygr1msl3y
提出日時 2021-10-08 22:31:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 76,592 KB
最終ジャッジ日時 2024-07-23 05:28:41
合計ジャッジ時間 2,069 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,488 KB
testcase_01 AC 37 ms
53,168 KB
testcase_02 AC 67 ms
73,756 KB
testcase_03 AC 38 ms
52,648 KB
testcase_04 WA -
testcase_05 AC 37 ms
53,072 KB
testcase_06 AC 76 ms
76,588 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 38 ms
52,396 KB
testcase_10 AC 36 ms
53,436 KB
testcase_11 AC 37 ms
52,480 KB
testcase_12 AC 38 ms
53,232 KB
testcase_13 AC 39 ms
52,568 KB
testcase_14 AC 40 ms
53,840 KB
testcase_15 AC 39 ms
53,212 KB
testcase_16 AC 38 ms
52,460 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
52,000 KB
testcase_21 AC 80 ms
76,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def solve(n):
    S = []
    for i in range(N):
        if (n >> i) & 1:
            S.append(i)
    v = sum(A[s] for s in S)
    if v == W:
        return 1
    T = set()
    for s in S:
        if A[s] in T:
            continue
        T.add(A[s])
        ct = 0
        for t in S:
            if A[t] == A[s]:
                ct += 1
        for j in range(1, ct+1):
            if v-j*A[s]//2 == W:
                return 1
    else:
        return 0


ans = 0
S = set()
for i in range(2**N):
    ans += solve(i)
print(ans)
0