結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー shotoyooshotoyoo
提出日時 2021-06-17 00:34:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 979 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 115,120 KB
最終ジャッジ日時 2024-06-10 06:22:29
合計ジャッジ時間 5,642 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 44 ms
51,968 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 42 ms
52,352 KB
testcase_11 WA -
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 41 ms
52,480 KB
testcase_14 AC 49 ms
60,544 KB
testcase_15 AC 40 ms
52,480 KB
testcase_16 AC 42 ms
52,224 KB
testcase_17 AC 38 ms
51,840 KB
testcase_18 AC 36 ms
51,872 KB
testcase_19 AC 41 ms
52,352 KB
testcase_20 AC 39 ms
52,352 KB
testcase_21 AC 38 ms
52,608 KB
testcase_22 AC 37 ms
52,096 KB
testcase_23 AC 37 ms
52,352 KB
testcase_24 AC 36 ms
52,352 KB
testcase_25 AC 37 ms
52,204 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 38 ms
52,352 KB
testcase_28 AC 36 ms
52,224 KB
testcase_29 AC 37 ms
52,352 KB
testcase_30 AC 37 ms
52,352 KB
testcase_31 AC 37 ms
52,352 KB
testcase_32 AC 36 ms
52,480 KB
testcase_33 AC 35 ms
51,968 KB
testcase_34 AC 39 ms
52,352 KB
testcase_35 AC 38 ms
52,224 KB
testcase_36 AC 38 ms
52,352 KB
testcase_37 AC 111 ms
76,800 KB
testcase_38 AC 110 ms
76,772 KB
testcase_39 AC 113 ms
76,548 KB
testcase_40 AC 104 ms
77,112 KB
testcase_41 AC 105 ms
76,916 KB
testcase_42 AC 108 ms
76,604 KB
testcase_43 AC 105 ms
76,512 KB
testcase_44 AC 104 ms
76,764 KB
testcase_45 AC 109 ms
76,804 KB
testcase_46 AC 102 ms
76,288 KB
testcase_47 AC 97 ms
83,940 KB
testcase_48 AC 176 ms
114,712 KB
testcase_49 AC 107 ms
76,608 KB
testcase_50 WA -
testcase_51 AC 168 ms
114,652 KB
testcase_52 AC 165 ms
114,872 KB
testcase_53 AC 173 ms
114,944 KB
testcase_54 AC 178 ms
114,920 KB
testcase_55 AC 177 ms
115,120 KB
testcase_56 AC 169 ms
115,072 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:
    print("No")
0