結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,288 KB
testcase_01 AC 35 ms
52,456 KB
testcase_02 AC 34 ms
53,032 KB
testcase_03 AC 34 ms
52,512 KB
testcase_04 AC 34 ms
52,416 KB
testcase_05 AC 34 ms
52,956 KB
testcase_06 AC 35 ms
53,760 KB
testcase_07 AC 34 ms
53,412 KB
testcase_08 AC 35 ms
53,360 KB
testcase_09 AC 35 ms
53,752 KB
testcase_10 AC 33 ms
52,480 KB
testcase_11 AC 36 ms
52,444 KB
testcase_12 AC 36 ms
52,308 KB
testcase_13 AC 34 ms
52,144 KB
testcase_14 AC 40 ms
60,648 KB
testcase_15 AC 33 ms
52,812 KB
testcase_16 AC 34 ms
52,676 KB
testcase_17 AC 33 ms
52,552 KB
testcase_18 AC 33 ms
52,700 KB
testcase_19 AC 33 ms
52,496 KB
testcase_20 AC 34 ms
52,508 KB
testcase_21 AC 34 ms
52,632 KB
testcase_22 AC 33 ms
52,236 KB
testcase_23 AC 32 ms
51,868 KB
testcase_24 AC 32 ms
52,564 KB
testcase_25 AC 33 ms
52,024 KB
testcase_26 AC 32 ms
52,500 KB
testcase_27 AC 34 ms
53,240 KB
testcase_28 AC 35 ms
52,684 KB
testcase_29 AC 34 ms
52,944 KB
testcase_30 AC 35 ms
53,088 KB
testcase_31 AC 34 ms
53,560 KB
testcase_32 AC 35 ms
53,068 KB
testcase_33 AC 35 ms
52,484 KB
testcase_34 AC 37 ms
52,268 KB
testcase_35 AC 34 ms
52,276 KB
testcase_36 AC 33 ms
51,964 KB
testcase_37 AC 489 ms
175,956 KB
testcase_38 AC 600 ms
175,876 KB
testcase_39 AC 569 ms
175,956 KB
testcase_40 AC 440 ms
162,356 KB
testcase_41 AC 442 ms
162,352 KB
testcase_42 AC 489 ms
175,860 KB
testcase_43 AC 35 ms
53,440 KB
testcase_44 AC 471 ms
127,100 KB
testcase_45 AC 503 ms
144,400 KB
testcase_46 AC 307 ms
75,804 KB
testcase_47 AC 141 ms
114,956 KB
testcase_48 AC 585 ms
175,884 KB
testcase_49 AC 455 ms
122,656 KB
testcase_50 AC 36 ms
52,004 KB
testcase_51 AC 675 ms
176,120 KB
testcase_52 AC 607 ms
175,616 KB
testcase_53 AC 604 ms
175,864 KB
testcase_54 AC 601 ms
175,720 KB
testcase_55 AC 582 ms
175,720 KB
testcase_56 AC 578 ms
175,876 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