結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー とりゐとりゐ
提出日時 2021-05-20 17:51:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 780 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 176,156 KB
最終ジャッジ日時 2024-12-14 05:19:06
合計ジャッジ時間 14,075 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,344 KB
testcase_01 AC 39 ms
52,732 KB
testcase_02 AC 39 ms
52,884 KB
testcase_03 AC 41 ms
53,372 KB
testcase_04 AC 39 ms
53,216 KB
testcase_05 AC 43 ms
52,400 KB
testcase_06 AC 39 ms
53,024 KB
testcase_07 AC 39 ms
52,600 KB
testcase_08 AC 40 ms
53,828 KB
testcase_09 AC 39 ms
52,176 KB
testcase_10 AC 38 ms
52,932 KB
testcase_11 AC 39 ms
53,032 KB
testcase_12 AC 40 ms
53,288 KB
testcase_13 AC 40 ms
52,452 KB
testcase_14 AC 46 ms
60,544 KB
testcase_15 AC 39 ms
52,524 KB
testcase_16 AC 39 ms
52,752 KB
testcase_17 AC 38 ms
52,944 KB
testcase_18 AC 40 ms
53,560 KB
testcase_19 AC 38 ms
52,244 KB
testcase_20 AC 39 ms
52,340 KB
testcase_21 AC 40 ms
52,084 KB
testcase_22 AC 40 ms
53,016 KB
testcase_23 AC 38 ms
53,492 KB
testcase_24 AC 39 ms
52,272 KB
testcase_25 AC 38 ms
52,388 KB
testcase_26 AC 38 ms
52,636 KB
testcase_27 AC 37 ms
52,068 KB
testcase_28 AC 38 ms
53,172 KB
testcase_29 AC 38 ms
53,420 KB
testcase_30 AC 40 ms
53,292 KB
testcase_31 AC 39 ms
52,584 KB
testcase_32 AC 39 ms
52,208 KB
testcase_33 AC 37 ms
53,460 KB
testcase_34 AC 39 ms
53,480 KB
testcase_35 AC 38 ms
53,492 KB
testcase_36 AC 37 ms
52,208 KB
testcase_37 AC 559 ms
175,608 KB
testcase_38 AC 692 ms
175,604 KB
testcase_39 AC 648 ms
175,812 KB
testcase_40 AC 490 ms
162,608 KB
testcase_41 AC 483 ms
162,668 KB
testcase_42 AC 541 ms
175,920 KB
testcase_43 AC 39 ms
52,312 KB
testcase_44 AC 506 ms
127,548 KB
testcase_45 AC 565 ms
144,240 KB
testcase_46 AC 342 ms
75,720 KB
testcase_47 AC 170 ms
114,696 KB
testcase_48 AC 719 ms
175,812 KB
testcase_49 AC 513 ms
122,836 KB
testcase_50 AC 39 ms
52,448 KB
testcase_51 AC 709 ms
175,628 KB
testcase_52 AC 752 ms
175,608 KB
testcase_53 AC 730 ms
175,620 KB
testcase_54 AC 730 ms
176,156 KB
testcase_55 AC 726 ms
175,780 KB
testcase_56 AC 780 ms
175,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#おそらく正しい解法
n,k=map(int,input().split())
a=list(map(int,input().split()))
if k in a:
  print('Yes')
  exit()
d={}
cnt=0
if k==0:
  cnt+=2**n
for i in range(2**n):
  tmp=0
  for j in range(n):
    if (i>>j)&1:
      tmp+=a[j]
  if tmp==k:
    cnt-=2**(n-bin(i).count('1'))
  if tmp==-k:
    cnt-=2**(n-bin(i).count('1'))
  if tmp in d:
    d[tmp]+=1
  else:
    d[tmp]=1
for i in d.keys():
  if i+k in d.keys():
    cnt+=d[i]*d[i+k]
if cnt>0:
  print('Yes')
else:
  print('No')
0