結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー とりゐとりゐ
提出日時 2021-05-25 12:52:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 1,032 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 19,888 KB
最終ジャッジ日時 2024-05-08 04:38:08
合計ジャッジ時間 10,207 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 27 ms
11,008 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 27 ms
11,008 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 27 ms
11,008 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 26 ms
11,008 KB
testcase_08 AC 26 ms
11,136 KB
testcase_09 AC 28 ms
11,008 KB
testcase_10 AC 27 ms
11,008 KB
testcase_11 AC 28 ms
11,136 KB
testcase_12 AC 28 ms
11,136 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 27 ms
11,008 KB
testcase_15 AC 27 ms
10,880 KB
testcase_16 AC 27 ms
11,008 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 29 ms
11,136 KB
testcase_19 AC 28 ms
11,136 KB
testcase_20 AC 27 ms
10,880 KB
testcase_21 AC 25 ms
11,008 KB
testcase_22 AC 26 ms
10,880 KB
testcase_23 AC 27 ms
11,136 KB
testcase_24 AC 28 ms
11,008 KB
testcase_25 AC 27 ms
10,880 KB
testcase_26 AC 27 ms
10,880 KB
testcase_27 AC 26 ms
10,880 KB
testcase_28 AC 26 ms
11,136 KB
testcase_29 AC 27 ms
11,136 KB
testcase_30 AC 27 ms
11,008 KB
testcase_31 AC 27 ms
10,880 KB
testcase_32 AC 27 ms
10,880 KB
testcase_33 AC 29 ms
10,880 KB
testcase_34 AC 28 ms
11,136 KB
testcase_35 AC 28 ms
11,008 KB
testcase_36 AC 27 ms
11,136 KB
testcase_37 AC 453 ms
11,520 KB
testcase_38 AC 453 ms
11,520 KB
testcase_39 AC 462 ms
11,648 KB
testcase_40 AC 462 ms
11,520 KB
testcase_41 AC 456 ms
11,392 KB
testcase_42 AC 445 ms
11,392 KB
testcase_43 AC 28 ms
11,008 KB
testcase_44 AC 85 ms
11,136 KB
testcase_45 AC 456 ms
11,520 KB
testcase_46 AC 408 ms
10,880 KB
testcase_47 AC 178 ms
13,568 KB
testcase_48 AC 518 ms
19,832 KB
testcase_49 AC 352 ms
11,520 KB
testcase_50 AC 26 ms
10,880 KB
testcase_51 AC 526 ms
19,612 KB
testcase_52 AC 504 ms
19,748 KB
testcase_53 AC 496 ms
19,888 KB
testcase_54 AC 507 ms
19,744 KB
testcase_55 AC 501 ms
19,652 KB
testcase_56 AC 494 ms
19,732 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()

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