結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー とりゐとりゐ
提出日時 2021-05-20 17:52:25
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 466 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 175,980 KB
最終ジャッジ日時 2024-05-02 11:58:45
合計ジャッジ時間 15,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,396 KB
testcase_01 AC 39 ms
53,504 KB
testcase_02 AC 39 ms
51,940 KB
testcase_03 AC 40 ms
52,988 KB
testcase_04 AC 41 ms
52,320 KB
testcase_05 AC 40 ms
52,320 KB
testcase_06 AC 39 ms
52,532 KB
testcase_07 AC 40 ms
52,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 40 ms
52,544 KB
testcase_12 AC 40 ms
52,028 KB
testcase_13 AC 39 ms
52,872 KB
testcase_14 AC 46 ms
60,412 KB
testcase_15 AC 40 ms
52,336 KB
testcase_16 AC 40 ms
52,456 KB
testcase_17 AC 39 ms
51,996 KB
testcase_18 AC 39 ms
52,344 KB
testcase_19 AC 39 ms
52,028 KB
testcase_20 AC 40 ms
53,076 KB
testcase_21 AC 40 ms
52,060 KB
testcase_22 AC 38 ms
52,696 KB
testcase_23 AC 39 ms
52,624 KB
testcase_24 AC 41 ms
52,520 KB
testcase_25 AC 40 ms
53,528 KB
testcase_26 AC 39 ms
53,872 KB
testcase_27 AC 41 ms
53,216 KB
testcase_28 AC 40 ms
53,024 KB
testcase_29 AC 39 ms
53,004 KB
testcase_30 AC 41 ms
53,948 KB
testcase_31 AC 40 ms
51,820 KB
testcase_32 AC 40 ms
53,352 KB
testcase_33 AC 40 ms
52,408 KB
testcase_34 AC 41 ms
52,080 KB
testcase_35 AC 39 ms
52,672 KB
testcase_36 AC 40 ms
52,164 KB
testcase_37 AC 613 ms
175,600 KB
testcase_38 AC 793 ms
175,760 KB
testcase_39 AC 732 ms
175,600 KB
testcase_40 AC 537 ms
162,516 KB
testcase_41 AC 535 ms
162,532 KB
testcase_42 AC 595 ms
175,732 KB
testcase_43 AC 40 ms
52,268 KB
testcase_44 WA -
testcase_45 AC 604 ms
144,012 KB
testcase_46 AC 338 ms
75,596 KB
testcase_47 AC 178 ms
114,816 KB
testcase_48 AC 845 ms
175,736 KB
testcase_49 WA -
testcase_50 AC 40 ms
52,404 KB
testcase_51 AC 835 ms
175,620 KB
testcase_52 AC 834 ms
175,736 KB
testcase_53 AC 829 ms
175,980 KB
testcase_54 AC 837 ms
175,840 KB
testcase_55 AC 831 ms
175,600 KB
testcase_56 AC 821 ms
175,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#正しくない解法
n,k=map(int,input().split())
a=list(map(int,input().split()))
if k in a:
  print('Yes')
  exit()
d={}
cnt=0
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