結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー ygd.ygd.
提出日時 2021-06-12 22:36:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,583 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 108,112 KB
最終ジャッジ日時 2024-12-17 20:17:22
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,980 KB
testcase_01 AC 45 ms
54,180 KB
testcase_02 AC 45 ms
54,168 KB
testcase_03 AC 43 ms
55,592 KB
testcase_04 AC 43 ms
54,872 KB
testcase_05 AC 43 ms
55,648 KB
testcase_06 AC 43 ms
54,180 KB
testcase_07 AC 43 ms
54,680 KB
testcase_08 AC 42 ms
55,220 KB
testcase_09 AC 44 ms
54,712 KB
testcase_10 AC 42 ms
54,856 KB
testcase_11 WA -
testcase_12 AC 43 ms
54,652 KB
testcase_13 AC 43 ms
54,184 KB
testcase_14 AC 49 ms
62,928 KB
testcase_15 AC 45 ms
55,508 KB
testcase_16 AC 44 ms
54,916 KB
testcase_17 AC 42 ms
54,416 KB
testcase_18 AC 42 ms
54,804 KB
testcase_19 AC 43 ms
55,004 KB
testcase_20 AC 42 ms
54,244 KB
testcase_21 AC 43 ms
54,920 KB
testcase_22 AC 43 ms
54,576 KB
testcase_23 AC 44 ms
54,808 KB
testcase_24 AC 43 ms
54,940 KB
testcase_25 AC 42 ms
54,976 KB
testcase_26 AC 43 ms
55,540 KB
testcase_27 AC 43 ms
54,084 KB
testcase_28 AC 43 ms
55,096 KB
testcase_29 AC 42 ms
55,152 KB
testcase_30 AC 43 ms
55,144 KB
testcase_31 AC 42 ms
54,604 KB
testcase_32 AC 43 ms
55,796 KB
testcase_33 AC 43 ms
54,844 KB
testcase_34 AC 43 ms
54,580 KB
testcase_35 AC 43 ms
54,672 KB
testcase_36 AC 43 ms
54,288 KB
testcase_37 AC 185 ms
80,752 KB
testcase_38 AC 183 ms
80,944 KB
testcase_39 AC 185 ms
81,432 KB
testcase_40 AC 182 ms
80,884 KB
testcase_41 AC 177 ms
81,032 KB
testcase_42 AC 185 ms
80,856 KB
testcase_43 AC 62 ms
69,920 KB
testcase_44 AC 86 ms
77,140 KB
testcase_45 AC 182 ms
81,020 KB
testcase_46 AC 176 ms
80,368 KB
testcase_47 AC 137 ms
85,512 KB
testcase_48 AC 218 ms
98,764 KB
testcase_49 AC 143 ms
79,524 KB
testcase_50 WA -
testcase_51 AC 235 ms
107,848 KB
testcase_52 AC 228 ms
104,140 KB
testcase_53 AC 232 ms
102,348 KB
testcase_54 AC 235 ms
107,848 KB
testcase_55 AC 228 ms
102,608 KB
testcase_56 AC 237 ms
108,112 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