結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 39 ms
51,688 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 38 ms
51,712 KB
testcase_12 AC 39 ms
51,584 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 47 ms
60,160 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 37 ms
52,096 KB
testcase_17 AC 39 ms
51,968 KB
testcase_18 AC 37 ms
52,352 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 38 ms
52,096 KB
testcase_21 AC 37 ms
51,840 KB
testcase_22 AC 38 ms
51,968 KB
testcase_23 AC 38 ms
51,584 KB
testcase_24 AC 38 ms
51,712 KB
testcase_25 AC 39 ms
51,840 KB
testcase_26 AC 39 ms
51,584 KB
testcase_27 AC 39 ms
52,352 KB
testcase_28 AC 40 ms
52,352 KB
testcase_29 AC 39 ms
52,352 KB
testcase_30 AC 39 ms
51,840 KB
testcase_31 AC 38 ms
51,584 KB
testcase_32 AC 39 ms
52,096 KB
testcase_33 AC 38 ms
52,352 KB
testcase_34 AC 40 ms
51,840 KB
testcase_35 AC 37 ms
51,968 KB
testcase_36 AC 38 ms
51,840 KB
testcase_37 AC 605 ms
175,600 KB
testcase_38 AC 809 ms
175,652 KB
testcase_39 AC 699 ms
175,476 KB
testcase_40 AC 540 ms
162,160 KB
testcase_41 AC 526 ms
162,420 KB
testcase_42 AC 573 ms
175,600 KB
testcase_43 AC 39 ms
51,712 KB
testcase_44 WA -
testcase_45 AC 597 ms
143,932 KB
testcase_46 AC 333 ms
75,272 KB
testcase_47 AC 161 ms
114,432 KB
testcase_48 AC 769 ms
175,768 KB
testcase_49 WA -
testcase_50 AC 38 ms
52,224 KB
testcase_51 AC 774 ms
175,604 KB
testcase_52 AC 787 ms
175,472 KB
testcase_53 AC 781 ms
175,460 KB
testcase_54 AC 774 ms
175,724 KB
testcase_55 AC 773 ms
175,652 KB
testcase_56 AC 772 ms
175,656 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