結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー AEnAEn
提出日時 2022-11-20 17:09:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 1,144 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 85,672 KB
最終ジャッジ日時 2024-09-21 16:14:42
合計ジャッジ時間 4,704 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 36 ms
52,352 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 37 ms
52,352 KB
testcase_14 AC 43 ms
59,008 KB
testcase_15 AC 37 ms
52,224 KB
testcase_16 AC 36 ms
52,608 KB
testcase_17 AC 38 ms
52,352 KB
testcase_18 AC 36 ms
52,224 KB
testcase_19 AC 37 ms
52,480 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 37 ms
52,352 KB
testcase_22 AC 37 ms
52,288 KB
testcase_23 AC 36 ms
52,736 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 AC 37 ms
51,968 KB
testcase_26 AC 36 ms
51,968 KB
testcase_27 AC 37 ms
52,480 KB
testcase_28 AC 36 ms
52,224 KB
testcase_29 AC 36 ms
52,096 KB
testcase_30 AC 36 ms
52,608 KB
testcase_31 AC 36 ms
52,608 KB
testcase_32 AC 37 ms
52,096 KB
testcase_33 AC 36 ms
52,608 KB
testcase_34 AC 36 ms
51,968 KB
testcase_35 AC 37 ms
52,352 KB
testcase_36 AC 38 ms
52,480 KB
testcase_37 AC 84 ms
76,288 KB
testcase_38 AC 87 ms
76,120 KB
testcase_39 AC 89 ms
75,864 KB
testcase_40 AC 81 ms
76,456 KB
testcase_41 AC 80 ms
75,940 KB
testcase_42 AC 85 ms
75,960 KB
testcase_43 AC 38 ms
52,280 KB
testcase_44 AC 38 ms
52,268 KB
testcase_45 AC 86 ms
76,188 KB
testcase_46 AC 82 ms
75,904 KB
testcase_47 AC 74 ms
77,952 KB
testcase_48 AC 102 ms
85,288 KB
testcase_49 AC 80 ms
76,316 KB
testcase_50 AC 36 ms
52,224 KB
testcase_51 AC 102 ms
85,552 KB
testcase_52 AC 99 ms
85,344 KB
testcase_53 AC 99 ms
85,548 KB
testcase_54 AC 104 ms
85,672 KB
testcase_55 AC 99 ms
85,288 KB
testcase_56 AC 105 ms
85,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
if K in A:
    exit(print('Yes'))

p, q = A[:N//2],A[N//2:]
P = [set() for _ in range(3)]
Q = [set() for _ in range(3)]

def cal(p, P):
    for i in range(1,1<<len(p)):
        s = []
        for j in range(len(p)):
            if i&(1<<j):
                s.append(p[j])
        for j in range(1<<len(s)):
            sm = 0
            cp, cn = 0,0
            for k in range(len(s)):
                if j&(1<<k):
                    cp += 1
                    sm += s[k]
                else:
                    cn += 1
                    sm -= s[k]
            if cp>=1 and cn>=1:
                if sm==K:
                    exit(print('Yes'))
                P[0].add(sm)
            elif cp>=1:
                P[1].add(sm)
            else:
                P[2].add(sm)

cal(p,P)
cal(q,Q)
for n1 in P[0]:
    for i in range(3):
        if K-n1 in Q[i]:
            exit(print('Yes'))
for n1 in P[1]:
    if (K-n1 in Q[0]) or (K-n1 in Q[2]):
        exit(print('Yes'))
for n1 in P[2]:
    if (K-n1 in Q[0]) or (K-n1 in Q[1]):
        exit(print('Yes'))
print('No')
0