結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー AEnAEn
提出日時 2022-11-20 17:02:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,081 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 86,452 KB
最終ジャッジ日時 2024-09-21 16:10:25
合計ジャッジ時間 5,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,888 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 44 ms
54,144 KB
testcase_04 AC 42 ms
53,888 KB
testcase_05 AC 44 ms
53,888 KB
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 44 ms
54,016 KB
testcase_08 AC 44 ms
53,760 KB
testcase_09 AC 43 ms
53,888 KB
testcase_10 AC 43 ms
54,144 KB
testcase_11 WA -
testcase_12 AC 42 ms
54,016 KB
testcase_13 AC 43 ms
53,760 KB
testcase_14 AC 48 ms
61,312 KB
testcase_15 AC 43 ms
54,016 KB
testcase_16 AC 44 ms
54,272 KB
testcase_17 AC 43 ms
54,016 KB
testcase_18 AC 42 ms
53,888 KB
testcase_19 AC 43 ms
54,144 KB
testcase_20 AC 42 ms
53,760 KB
testcase_21 AC 43 ms
54,144 KB
testcase_22 AC 42 ms
53,760 KB
testcase_23 AC 42 ms
54,272 KB
testcase_24 AC 43 ms
53,888 KB
testcase_25 AC 42 ms
54,144 KB
testcase_26 AC 42 ms
53,888 KB
testcase_27 AC 42 ms
53,888 KB
testcase_28 AC 42 ms
54,016 KB
testcase_29 AC 42 ms
54,216 KB
testcase_30 AC 42 ms
54,016 KB
testcase_31 AC 44 ms
54,016 KB
testcase_32 AC 43 ms
53,760 KB
testcase_33 AC 44 ms
54,144 KB
testcase_34 AC 44 ms
54,272 KB
testcase_35 AC 44 ms
54,016 KB
testcase_36 AC 42 ms
54,016 KB
testcase_37 AC 89 ms
76,416 KB
testcase_38 AC 92 ms
76,544 KB
testcase_39 AC 92 ms
76,620 KB
testcase_40 AC 86 ms
76,428 KB
testcase_41 AC 86 ms
76,288 KB
testcase_42 AC 90 ms
76,544 KB
testcase_43 AC 89 ms
76,308 KB
testcase_44 WA -
testcase_45 AC 90 ms
76,416 KB
testcase_46 AC 83 ms
76,288 KB
testcase_47 AC 79 ms
78,464 KB
testcase_48 AC 118 ms
86,452 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 111 ms
86,200 KB
testcase_52 AC 107 ms
86,192 KB
testcase_53 AC 112 ms
86,328 KB
testcase_54 AC 112 ms
86,448 KB
testcase_55 AC 106 ms
86,328 KB
testcase_56 AC 113 ms
86,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N, K = map(int, input().split())
A = list(map(int, input().split()))

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:
                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