結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー ygd.ygd.
提出日時 2021-06-12 22:36:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,583 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 107,860 KB
最終ジャッジ日時 2024-05-10 01:09:32
合計ジャッジ時間 7,422 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
53,632 KB
testcase_01 AC 56 ms
54,144 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 45 ms
54,144 KB
testcase_04 AC 45 ms
53,888 KB
testcase_05 AC 46 ms
53,888 KB
testcase_06 AC 46 ms
53,888 KB
testcase_07 AC 44 ms
53,504 KB
testcase_08 AC 49 ms
53,760 KB
testcase_09 AC 45 ms
53,504 KB
testcase_10 AC 46 ms
53,760 KB
testcase_11 WA -
testcase_12 AC 44 ms
53,888 KB
testcase_13 AC 46 ms
53,760 KB
testcase_14 AC 52 ms
61,312 KB
testcase_15 AC 45 ms
54,016 KB
testcase_16 AC 46 ms
53,888 KB
testcase_17 AC 46 ms
54,144 KB
testcase_18 AC 45 ms
53,504 KB
testcase_19 AC 46 ms
53,888 KB
testcase_20 AC 46 ms
53,504 KB
testcase_21 AC 46 ms
53,760 KB
testcase_22 AC 46 ms
53,888 KB
testcase_23 AC 45 ms
53,504 KB
testcase_24 AC 47 ms
54,272 KB
testcase_25 AC 45 ms
53,888 KB
testcase_26 AC 46 ms
53,888 KB
testcase_27 AC 46 ms
53,632 KB
testcase_28 AC 45 ms
54,272 KB
testcase_29 AC 46 ms
53,760 KB
testcase_30 AC 47 ms
54,144 KB
testcase_31 AC 46 ms
53,888 KB
testcase_32 AC 48 ms
54,144 KB
testcase_33 AC 45 ms
53,632 KB
testcase_34 AC 46 ms
53,760 KB
testcase_35 AC 44 ms
53,888 KB
testcase_36 AC 46 ms
54,016 KB
testcase_37 AC 196 ms
81,024 KB
testcase_38 AC 198 ms
81,024 KB
testcase_39 AC 202 ms
81,408 KB
testcase_40 AC 196 ms
80,640 KB
testcase_41 AC 190 ms
80,896 KB
testcase_42 AC 197 ms
81,024 KB
testcase_43 AC 71 ms
69,376 KB
testcase_44 AC 99 ms
77,568 KB
testcase_45 AC 197 ms
81,024 KB
testcase_46 AC 188 ms
80,512 KB
testcase_47 AC 153 ms
85,632 KB
testcase_48 AC 235 ms
98,512 KB
testcase_49 AC 160 ms
79,744 KB
testcase_50 WA -
testcase_51 AC 260 ms
107,860 KB
testcase_52 AC 249 ms
104,016 KB
testcase_53 AC 244 ms
102,352 KB
testcase_54 AC 235 ms
107,600 KB
testcase_55 AC 220 ms
102,348 KB
testcase_56 AC 230 ms
107,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict 

def main():
    N,K = map(int,input().split())
    A = list(map(int,input().split()))
    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