結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー noriocnorioc
提出日時 2024-02-08 03:05:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 675 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 574,356 KB
最終ジャッジ日時 2024-09-28 12:42:05
合計ジャッジ時間 9,766 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,788 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 36 ms
51,968 KB
testcase_12 WA -
testcase_13 AC 37 ms
52,608 KB
testcase_14 AC 36 ms
51,968 KB
testcase_15 AC 36 ms
52,096 KB
testcase_16 WA -
testcase_17 AC 36 ms
52,096 KB
testcase_18 AC 36 ms
51,584 KB
testcase_19 AC 37 ms
52,096 KB
testcase_20 AC 36 ms
52,352 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 39 ms
52,096 KB
testcase_23 AC 38 ms
51,840 KB
testcase_24 AC 37 ms
51,968 KB
testcase_25 AC 39 ms
51,584 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 36 ms
51,584 KB
testcase_28 AC 36 ms
52,352 KB
testcase_29 AC 37 ms
51,968 KB
testcase_30 AC 34 ms
53,620 KB
testcase_31 AC 35 ms
53,420 KB
testcase_32 WA -
testcase_33 AC 34 ms
52,204 KB
testcase_34 AC 34 ms
52,064 KB
testcase_35 AC 34 ms
52,516 KB
testcase_36 AC 34 ms
52,208 KB
testcase_37 AC 297 ms
235,772 KB
testcase_38 AC 645 ms
236,396 KB
testcase_39 AC 306 ms
235,548 KB
testcase_40 AC 310 ms
236,244 KB
testcase_41 AC 311 ms
236,120 KB
testcase_42 AC 296 ms
236,280 KB
testcase_43 AC 36 ms
53,260 KB
testcase_44 AC 199 ms
239,652 KB
testcase_45 AC 456 ms
239,492 KB
testcase_46 AC 35 ms
52,380 KB
testcase_47 MLE -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def subs(a: list) -> set:
    s = set()
    for x in a:
        t = s.copy()
        for y in s:
            t.add(x - y)
            t.add(y - x)
        t.add(x)
        s = t
    return s


N, K = map(int, input().split())
A = list(map(int, input().split()))

if K in A:
    print('Yes')
    exit()


def solve():
    a = A[:N//2]
    b = A[N//2:]

    xs = subs(a)
    ys = subs(b)
    print(f'{a=} {xs=}')
    print(f'{b=} {ys=}')
    if K in xs or K in ys: return True
    for x in xs:
        if x-K in ys or x+K in ys:
            return True
    return False


def solve2():
    xs = subs(A)
    return K in xs


if solve2():
    print('Yes')
else:
    print('No')
0