結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー shotoyooshotoyoo
提出日時 2021-06-17 00:35:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 1,029 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 114,996 KB
最終ジャッジ日時 2024-06-10 06:23:05
合計ジャッジ時間 5,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,020 KB
testcase_01 AC 37 ms
53,436 KB
testcase_02 AC 36 ms
52,432 KB
testcase_03 AC 37 ms
52,676 KB
testcase_04 AC 36 ms
53,156 KB
testcase_05 AC 38 ms
54,172 KB
testcase_06 AC 37 ms
52,340 KB
testcase_07 AC 37 ms
53,552 KB
testcase_08 AC 37 ms
52,996 KB
testcase_09 AC 37 ms
52,692 KB
testcase_10 AC 37 ms
52,900 KB
testcase_11 AC 37 ms
52,348 KB
testcase_12 AC 36 ms
53,108 KB
testcase_13 AC 37 ms
52,888 KB
testcase_14 AC 44 ms
61,232 KB
testcase_15 AC 37 ms
53,288 KB
testcase_16 AC 38 ms
51,944 KB
testcase_17 AC 36 ms
52,300 KB
testcase_18 AC 37 ms
52,140 KB
testcase_19 AC 37 ms
53,576 KB
testcase_20 AC 36 ms
52,864 KB
testcase_21 AC 37 ms
52,892 KB
testcase_22 AC 37 ms
53,892 KB
testcase_23 AC 37 ms
52,836 KB
testcase_24 AC 36 ms
52,428 KB
testcase_25 AC 37 ms
53,100 KB
testcase_26 AC 36 ms
53,848 KB
testcase_27 AC 38 ms
52,736 KB
testcase_28 AC 37 ms
52,624 KB
testcase_29 AC 36 ms
52,632 KB
testcase_30 AC 36 ms
53,236 KB
testcase_31 AC 37 ms
52,260 KB
testcase_32 AC 36 ms
53,108 KB
testcase_33 AC 37 ms
53,560 KB
testcase_34 AC 37 ms
52,692 KB
testcase_35 AC 37 ms
52,472 KB
testcase_36 AC 36 ms
53,020 KB
testcase_37 AC 103 ms
76,744 KB
testcase_38 AC 102 ms
76,476 KB
testcase_39 AC 100 ms
76,408 KB
testcase_40 AC 101 ms
76,416 KB
testcase_41 AC 99 ms
76,680 KB
testcase_42 AC 102 ms
76,748 KB
testcase_43 AC 100 ms
75,924 KB
testcase_44 AC 101 ms
76,652 KB
testcase_45 AC 100 ms
76,928 KB
testcase_46 AC 93 ms
75,724 KB
testcase_47 AC 87 ms
83,684 KB
testcase_48 AC 162 ms
114,460 KB
testcase_49 AC 102 ms
76,824 KB
testcase_50 AC 101 ms
76,740 KB
testcase_51 AC 162 ms
114,996 KB
testcase_52 AC 164 ms
114,676 KB
testcase_53 AC 167 ms
114,856 KB
testcase_54 AC 164 ms
114,524 KB
testcase_55 AC 163 ms
114,864 KB
testcase_56 AC 168 ms
114,752 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 v and 2 in l1[K-k]) or (2 in v and 1 in l1[K-k]):
            print("Yes")
            break
else:
    if K in a:
        print("Yes")
    else:
        print("No")
0