結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー とりゐとりゐ
提出日時 2021-05-20 18:05:34
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 330 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 139,392 KB
最終ジャッジ日時 2024-11-23 01:32:15
合計ジャッジ時間 54,612 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,832 KB
testcase_01 AC 41 ms
128,256 KB
testcase_02 AC 40 ms
57,088 KB
testcase_03 AC 49 ms
139,392 KB
testcase_04 AC 39 ms
57,344 KB
testcase_05 AC 51 ms
137,856 KB
testcase_06 AC 50 ms
67,328 KB
testcase_07 AC 39 ms
127,616 KB
testcase_08 AC 39 ms
57,216 KB
testcase_09 AC 39 ms
60,636 KB
testcase_10 AC 48 ms
64,896 KB
testcase_11 AC 39 ms
127,488 KB
testcase_12 AC 39 ms
57,216 KB
testcase_13 AC 46 ms
134,784 KB
testcase_14 AC 42 ms
62,592 KB
testcase_15 AC 49 ms
137,728 KB
testcase_16 AC 39 ms
56,960 KB
testcase_17 AC 43 ms
133,248 KB
testcase_18 AC 39 ms
57,472 KB
testcase_19 AC 38 ms
128,256 KB
testcase_20 AC 38 ms
57,088 KB
testcase_21 AC 38 ms
127,744 KB
testcase_22 AC 39 ms
57,728 KB
testcase_23 AC 38 ms
128,256 KB
testcase_24 AC 40 ms
57,472 KB
testcase_25 AC 39 ms
127,744 KB
testcase_26 AC 39 ms
57,472 KB
testcase_27 AC 39 ms
128,640 KB
testcase_28 AC 39 ms
57,472 KB
testcase_29 AC 40 ms
127,744 KB
testcase_30 AC 38 ms
57,344 KB
testcase_31 AC 39 ms
128,000 KB
testcase_32 AC 40 ms
57,472 KB
testcase_33 AC 39 ms
51,584 KB
testcase_34 AC 40 ms
51,712 KB
testcase_35 AC 40 ms
52,224 KB
testcase_36 AC 39 ms
51,456 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 39 ms
51,584 KB
testcase_42 TLE -
testcase_43 AC 39 ms
52,224 KB
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 39 ms
51,968 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# O(N3^N) 解法
n,k=map(int,input().split())
a=list(map(int,input().split()))
if k in a:
  print('Yes')
  exit()
import itertools
all=itertools.product([-1,0,1], repeat=n)
for x in all:
  if max(x)==1 and min(x)==-1:
    cnt=0
    for i in range(n):
      cnt+=a[i]*x[i]
    if cnt==k:
      print('Yes')
      exit()
print('No')
0