結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー とりゐとりゐ
提出日時 2021-05-21 23:34:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,776 KB
実行使用メモリ 84,956 KB
最終ジャッジ日時 2024-12-14 05:22:42
合計ジャッジ時間 5,628 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,004 KB
testcase_01 AC 39 ms
52,840 KB
testcase_02 AC 39 ms
53,132 KB
testcase_03 AC 40 ms
53,496 KB
testcase_04 AC 40 ms
52,380 KB
testcase_05 AC 39 ms
53,348 KB
testcase_06 AC 40 ms
52,960 KB
testcase_07 AC 39 ms
53,628 KB
testcase_08 AC 40 ms
52,660 KB
testcase_09 AC 40 ms
53,056 KB
testcase_10 AC 41 ms
52,600 KB
testcase_11 AC 39 ms
53,008 KB
testcase_12 AC 40 ms
53,696 KB
testcase_13 AC 41 ms
53,928 KB
testcase_14 AC 50 ms
59,844 KB
testcase_15 AC 40 ms
52,864 KB
testcase_16 AC 40 ms
53,136 KB
testcase_17 AC 40 ms
53,756 KB
testcase_18 AC 40 ms
52,316 KB
testcase_19 AC 39 ms
52,872 KB
testcase_20 AC 39 ms
52,136 KB
testcase_21 AC 41 ms
54,212 KB
testcase_22 AC 39 ms
52,776 KB
testcase_23 AC 39 ms
53,416 KB
testcase_24 AC 40 ms
53,292 KB
testcase_25 AC 40 ms
52,820 KB
testcase_26 AC 40 ms
53,744 KB
testcase_27 AC 39 ms
53,200 KB
testcase_28 AC 42 ms
53,136 KB
testcase_29 AC 40 ms
53,824 KB
testcase_30 AC 41 ms
53,280 KB
testcase_31 AC 41 ms
52,728 KB
testcase_32 AC 40 ms
53,264 KB
testcase_33 AC 40 ms
52,880 KB
testcase_34 AC 39 ms
53,252 KB
testcase_35 AC 40 ms
53,968 KB
testcase_36 AC 39 ms
53,032 KB
testcase_37 AC 108 ms
76,492 KB
testcase_38 AC 108 ms
76,500 KB
testcase_39 AC 106 ms
76,532 KB
testcase_40 AC 108 ms
76,492 KB
testcase_41 AC 108 ms
76,640 KB
testcase_42 AC 107 ms
76,472 KB
testcase_43 AC 41 ms
53,956 KB
testcase_44 AC 63 ms
76,312 KB
testcase_45 AC 106 ms
76,556 KB
testcase_46 AC 103 ms
76,284 KB
testcase_47 AC 85 ms
78,984 KB
testcase_48 AC 126 ms
84,948 KB
testcase_49 AC 92 ms
76,612 KB
testcase_50 AC 39 ms
53,436 KB
testcase_51 AC 128 ms
84,692 KB
testcase_52 AC 121 ms
84,700 KB
testcase_53 AC 127 ms
84,444 KB
testcase_54 AC 130 ms
84,824 KB
testcase_55 AC 125 ms
84,956 KB
testcase_56 AC 131 ms
84,696 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