結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー ygd.ygd.
提出日時 2021-06-12 22:37:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 1,618 bytes
コンパイル時間 1,215 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 107,852 KB
最終ジャッジ日時 2024-12-17 20:19:56
合計ジャッジ時間 6,970 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,908 KB
testcase_01 AC 42 ms
54,380 KB
testcase_02 AC 40 ms
55,080 KB
testcase_03 AC 41 ms
55,756 KB
testcase_04 AC 44 ms
55,952 KB
testcase_05 AC 41 ms
55,108 KB
testcase_06 AC 43 ms
54,184 KB
testcase_07 AC 40 ms
54,716 KB
testcase_08 AC 41 ms
55,328 KB
testcase_09 AC 42 ms
54,376 KB
testcase_10 AC 41 ms
56,052 KB
testcase_11 AC 43 ms
55,000 KB
testcase_12 AC 42 ms
54,848 KB
testcase_13 AC 41 ms
54,508 KB
testcase_14 AC 49 ms
62,532 KB
testcase_15 AC 42 ms
55,044 KB
testcase_16 AC 42 ms
53,868 KB
testcase_17 AC 41 ms
54,460 KB
testcase_18 AC 41 ms
54,452 KB
testcase_19 AC 40 ms
54,248 KB
testcase_20 AC 41 ms
54,368 KB
testcase_21 AC 42 ms
54,544 KB
testcase_22 AC 40 ms
55,964 KB
testcase_23 AC 41 ms
55,508 KB
testcase_24 AC 40 ms
55,592 KB
testcase_25 AC 43 ms
54,624 KB
testcase_26 AC 41 ms
55,628 KB
testcase_27 AC 42 ms
55,572 KB
testcase_28 AC 42 ms
55,372 KB
testcase_29 AC 41 ms
54,768 KB
testcase_30 AC 40 ms
55,596 KB
testcase_31 AC 39 ms
55,320 KB
testcase_32 AC 40 ms
53,992 KB
testcase_33 AC 40 ms
55,288 KB
testcase_34 AC 44 ms
54,316 KB
testcase_35 AC 42 ms
54,176 KB
testcase_36 AC 39 ms
55,460 KB
testcase_37 AC 173 ms
80,724 KB
testcase_38 AC 177 ms
80,868 KB
testcase_39 AC 178 ms
81,428 KB
testcase_40 AC 169 ms
80,808 KB
testcase_41 AC 167 ms
80,528 KB
testcase_42 AC 171 ms
80,944 KB
testcase_43 AC 39 ms
55,180 KB
testcase_44 AC 82 ms
76,868 KB
testcase_45 AC 171 ms
81,024 KB
testcase_46 AC 171 ms
80,840 KB
testcase_47 AC 133 ms
85,592 KB
testcase_48 AC 210 ms
98,504 KB
testcase_49 AC 142 ms
79,568 KB
testcase_50 AC 42 ms
54,000 KB
testcase_51 AC 227 ms
107,592 KB
testcase_52 AC 216 ms
103,824 KB
testcase_53 AC 216 ms
102,224 KB
testcase_54 AC 229 ms
107,592 KB
testcase_55 AC 208 ms
102,480 KB
testcase_56 AC 218 ms
107,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict 

def main():
    N,K = map(int,input().split())
    A = list(map(int,input().split()))
    if K in A: print("Yes");exit()
    s = set([])
    B = A[:N//2]
    C = A[N//2:]
    c = [-1,0,1]
    S = defaultdict(list)
    for i in range(3**len(B)):
        cmx = 0; cmn = 0
        val = 0
        for j in range(len(B)):
            sig = i%(3**(j+1))
            sig //= 3**j
            #print(i,j,sig)
            if sig == 0: #-1
                val -= B[j]
                cmn = min(cmn, -1)
            elif sig == 2: #+1
                val += B[j]
                cmx = max(cmx, 1)
        #print("VAL",val,cmx,cmn)
        if cmx == 1 and cmn == -1 and val == K:
            print("Yes");exit()
        S[val].append((cmx,cmn))
    #print(S)

    T = defaultdict(list)
    for i in range(3**len(C)):
        cmx = 0; cmn = 0
        val = 0
        for j in range(len(C)):
            sig = i%(3**(j+1))
            sig //= 3**j
            #print(i,j,sig)
            if sig == 0: #-1
                val -= C[j]
                cmn = min(cmn, -1)
            elif sig == 2: #+1
                val += C[j]
                cmx = max(cmx, 1)
        #print("VAL",val,cmx,cmn)
        if cmx == 1 and cmn == -1 and val == K:
            print("Yes");exit()
        T[val].append((cmx,cmn))
    #print(T)

    for x in S:
        nokori = K - x
        for xmx, xmn in S[x]:
            for ymx,ymn in T[nokori]:
                if max(xmx,ymx) == 1 and min(xmn,ymn) == -1:
                    print("Yes");exit()
    
    print("No")




if __name__ == '__main__':
    main()
0