結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー ygd.ygd.
提出日時 2021-06-12 22:37:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 1,618 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,108 KB
最終ジャッジ日時 2024-05-10 01:11:00
合計ジャッジ時間 7,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 44 ms
53,760 KB
testcase_02 AC 44 ms
53,888 KB
testcase_03 AC 45 ms
54,016 KB
testcase_04 AC 45 ms
53,888 KB
testcase_05 AC 45 ms
53,888 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 AC 48 ms
53,888 KB
testcase_08 AC 44 ms
54,400 KB
testcase_09 AC 45 ms
53,888 KB
testcase_10 AC 44 ms
54,184 KB
testcase_11 AC 44 ms
53,504 KB
testcase_12 AC 44 ms
53,888 KB
testcase_13 AC 45 ms
54,144 KB
testcase_14 AC 53 ms
61,440 KB
testcase_15 AC 45 ms
54,144 KB
testcase_16 AC 45 ms
54,272 KB
testcase_17 AC 43 ms
54,016 KB
testcase_18 AC 45 ms
54,016 KB
testcase_19 AC 44 ms
54,016 KB
testcase_20 AC 45 ms
54,016 KB
testcase_21 AC 44 ms
54,272 KB
testcase_22 AC 44 ms
53,760 KB
testcase_23 AC 44 ms
53,760 KB
testcase_24 AC 45 ms
54,016 KB
testcase_25 AC 45 ms
54,144 KB
testcase_26 AC 44 ms
53,888 KB
testcase_27 AC 43 ms
54,272 KB
testcase_28 AC 45 ms
54,400 KB
testcase_29 AC 43 ms
54,120 KB
testcase_30 AC 43 ms
53,888 KB
testcase_31 AC 44 ms
54,144 KB
testcase_32 AC 44 ms
54,400 KB
testcase_33 AC 42 ms
53,632 KB
testcase_34 AC 44 ms
54,016 KB
testcase_35 AC 44 ms
54,400 KB
testcase_36 AC 44 ms
53,632 KB
testcase_37 AC 185 ms
80,800 KB
testcase_38 AC 188 ms
80,852 KB
testcase_39 AC 189 ms
81,152 KB
testcase_40 AC 187 ms
80,940 KB
testcase_41 AC 182 ms
80,896 KB
testcase_42 AC 198 ms
80,896 KB
testcase_43 AC 43 ms
54,168 KB
testcase_44 AC 95 ms
77,208 KB
testcase_45 AC 195 ms
81,024 KB
testcase_46 AC 179 ms
80,576 KB
testcase_47 AC 139 ms
85,376 KB
testcase_48 AC 222 ms
98,764 KB
testcase_49 AC 149 ms
79,756 KB
testcase_50 AC 44 ms
54,016 KB
testcase_51 AC 239 ms
107,980 KB
testcase_52 AC 242 ms
104,144 KB
testcase_53 AC 232 ms
102,612 KB
testcase_54 AC 237 ms
107,972 KB
testcase_55 AC 229 ms
102,604 KB
testcase_56 AC 241 ms
108,108 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