結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー shotoyooshotoyoo
提出日時 2021-06-17 00:33:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 946 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 114,972 KB
最終ジャッジ日時 2024-06-10 06:20:49
合計ジャッジ時間 5,848 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,296 KB
testcase_01 AC 37 ms
52,532 KB
testcase_02 AC 37 ms
53,956 KB
testcase_03 AC 37 ms
52,676 KB
testcase_04 AC 38 ms
53,188 KB
testcase_05 AC 38 ms
53,560 KB
testcase_06 AC 38 ms
52,344 KB
testcase_07 AC 36 ms
52,696 KB
testcase_08 AC 37 ms
52,220 KB
testcase_09 AC 36 ms
54,392 KB
testcase_10 AC 38 ms
53,828 KB
testcase_11 WA -
testcase_12 AC 36 ms
52,332 KB
testcase_13 AC 38 ms
52,152 KB
testcase_14 AC 44 ms
60,592 KB
testcase_15 AC 38 ms
52,060 KB
testcase_16 AC 39 ms
53,152 KB
testcase_17 AC 38 ms
52,072 KB
testcase_18 AC 37 ms
53,416 KB
testcase_19 AC 37 ms
52,468 KB
testcase_20 AC 37 ms
52,516 KB
testcase_21 AC 37 ms
53,036 KB
testcase_22 AC 38 ms
53,752 KB
testcase_23 AC 38 ms
53,488 KB
testcase_24 AC 37 ms
52,068 KB
testcase_25 AC 37 ms
54,020 KB
testcase_26 AC 37 ms
53,112 KB
testcase_27 AC 37 ms
53,108 KB
testcase_28 AC 37 ms
52,736 KB
testcase_29 AC 36 ms
52,620 KB
testcase_30 AC 38 ms
52,072 KB
testcase_31 AC 36 ms
52,872 KB
testcase_32 AC 40 ms
52,560 KB
testcase_33 AC 40 ms
52,696 KB
testcase_34 AC 39 ms
52,868 KB
testcase_35 AC 40 ms
52,504 KB
testcase_36 AC 37 ms
54,216 KB
testcase_37 AC 108 ms
76,724 KB
testcase_38 AC 108 ms
76,604 KB
testcase_39 AC 110 ms
76,920 KB
testcase_40 AC 106 ms
76,808 KB
testcase_41 AC 106 ms
76,792 KB
testcase_42 AC 105 ms
76,716 KB
testcase_43 AC 101 ms
76,080 KB
testcase_44 AC 103 ms
76,572 KB
testcase_45 WA -
testcase_46 AC 97 ms
75,784 KB
testcase_47 AC 91 ms
83,964 KB
testcase_48 AC 174 ms
114,892 KB
testcase_49 AC 111 ms
76,556 KB
testcase_50 WA -
testcase_51 AC 171 ms
114,876 KB
testcase_52 AC 173 ms
114,828 KB
testcase_53 AC 172 ms
114,744 KB
testcase_54 AC 174 ms
114,736 KB
testcase_55 AC 177 ms
114,972 KB
testcase_56 AC 169 ms
114,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,K = list(map(int, input().split()))
a = list(map(int, input().split()))
a0 = a[:n//2]
a1 = a[n//2:]
l0 = {}
l1 = {}
def sub(a):
    res = {}
    for b in range(pow(3,len(a))):
        val = 0
        p = m = 0
        for i in range(len(a)):
            if b%3==0:
                val += a[i]
                p += 1
            elif b%3==1:
                val -= a[i]
                m += 1
            b //= 3
        res.setdefault(val, set())
        vv = (p>0) | (2*(m>0))
        res[val].add(vv)
    return res
l0 = sub(a0)
l1 = sub(a1)
for k,v in l0.items():
    if K-k in l1:
        ss = v|l1[K-k]
        if 3 in ss or (1 in ss and 2 in ss):
            print("Yes")
            break
else:
    print("No")
0