結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー とりゐとりゐ
提出日時 2021-05-21 23:34:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 84,832 KB
最終ジャッジ日時 2024-05-08 04:37:55
合計ジャッジ時間 4,565 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,696 KB
testcase_01 AC 34 ms
54,060 KB
testcase_02 AC 33 ms
53,268 KB
testcase_03 AC 35 ms
53,776 KB
testcase_04 AC 35 ms
53,100 KB
testcase_05 AC 36 ms
52,728 KB
testcase_06 AC 36 ms
54,320 KB
testcase_07 AC 35 ms
52,752 KB
testcase_08 AC 35 ms
52,836 KB
testcase_09 AC 38 ms
52,652 KB
testcase_10 AC 34 ms
53,076 KB
testcase_11 AC 34 ms
52,620 KB
testcase_12 AC 34 ms
53,944 KB
testcase_13 AC 33 ms
53,196 KB
testcase_14 AC 39 ms
60,836 KB
testcase_15 AC 33 ms
53,368 KB
testcase_16 AC 33 ms
52,612 KB
testcase_17 AC 35 ms
53,020 KB
testcase_18 AC 35 ms
53,272 KB
testcase_19 AC 34 ms
53,012 KB
testcase_20 AC 34 ms
53,404 KB
testcase_21 AC 33 ms
53,220 KB
testcase_22 AC 33 ms
53,272 KB
testcase_23 AC 33 ms
53,200 KB
testcase_24 AC 34 ms
53,608 KB
testcase_25 AC 34 ms
53,148 KB
testcase_26 AC 34 ms
53,420 KB
testcase_27 AC 34 ms
52,540 KB
testcase_28 AC 33 ms
53,344 KB
testcase_29 AC 34 ms
53,232 KB
testcase_30 AC 34 ms
53,632 KB
testcase_31 AC 33 ms
53,284 KB
testcase_32 AC 32 ms
52,684 KB
testcase_33 AC 32 ms
52,956 KB
testcase_34 AC 34 ms
53,444 KB
testcase_35 AC 35 ms
52,584 KB
testcase_36 AC 33 ms
52,696 KB
testcase_37 AC 91 ms
76,592 KB
testcase_38 AC 94 ms
76,664 KB
testcase_39 AC 91 ms
76,596 KB
testcase_40 AC 90 ms
76,364 KB
testcase_41 AC 93 ms
76,712 KB
testcase_42 AC 90 ms
76,828 KB
testcase_43 AC 35 ms
53,160 KB
testcase_44 AC 56 ms
76,156 KB
testcase_45 AC 96 ms
76,656 KB
testcase_46 AC 91 ms
76,204 KB
testcase_47 AC 74 ms
78,440 KB
testcase_48 AC 107 ms
84,692 KB
testcase_49 AC 79 ms
76,432 KB
testcase_50 AC 37 ms
53,356 KB
testcase_51 AC 114 ms
84,440 KB
testcase_52 AC 106 ms
84,564 KB
testcase_53 AC 106 ms
84,692 KB
testcase_54 AC 107 ms
84,692 KB
testcase_55 AC 106 ms
84,696 KB
testcase_56 AC 105 ms
84,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
if k in a:
  print('Yes')
  exit()
b=[a[i] for i in range(n//2)]
nb=len(b)
c=[a[i] for i in range(n//2,n)]
nc=len(c)

s1=set()
s2=set()
s3=set()
import itertools
all=itertools.product([-1,0,1], repeat=nb)
for x in all:
  cnt=0
  for i in range(nb):
    cnt+=b[i]*x[i]
  if max(x)==1 and min(x)==-1:
    if cnt==k:
      print('Yes')
      exit()
    s1.add(cnt)
  elif max(x)==1:
    s2.add(cnt)
  elif min(x)==-1:
    s3.add(cnt)

t1=set()
t2=set()
t3=set()
import itertools
all=itertools.product([-1,0,1], repeat=nc)
for x in all:
  cnt=0
  for i in range(nc):
    cnt+=c[i]*x[i]
  if max(x)==1 and min(x)==-1:
    if cnt==k:
      print('Yes')
      exit()
    t1.add(cnt)
  elif max(x)==1:
    t2.add(cnt)
  elif min(x)==-1:
    t3.add(cnt)

for i in s1:
  if i+k in t1 or i+k in t2 or i+k in t3:
    print('Yes')
    exit()

for i in s2:
  if i+k in t1 or i+k in t2:
    print('Yes')
    exit()

for i in s3:
  if i+k in t1 or i+k in t3:
    print('Yes')
    exit()

print('No')
0