結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー tomeruntomerun
提出日時 2021-06-06 19:01:55
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 444 bytes
コンパイル時間 14,545 ms
コンパイル使用メモリ 295,092 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-05-02 14:30:45
合計ジャッジ時間 15,947 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 5 ms
5,376 KB
testcase_38 AC 5 ms
5,376 KB
testcase_39 AC 5 ms
5,376 KB
testcase_40 AC 5 ms
5,376 KB
testcase_41 AC 5 ms
5,376 KB
testcase_42 WA -
testcase_43 RE -
testcase_44 AC 5 ms
5,376 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 5 ms
5,376 KB
testcase_50 AC 5 ms
5,376 KB
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = read_line.split.map(&.to_i)
a = read_line.split.map(&.to_i64)
pre = a[0...(n // 2)]
suf = a[(n // 2)..]
sp = comb(pre)
ss = comb(suf)
sp.each do |s|
  if ss.includes?(k - s)
    puts "Yes"
    exit
  end
end
puts "No"

def comb(a)
  set = Set(Int64).new
  dfs(a, 0, 0i64, set)
  return set
end

def dfs(a, i, sum, set)
  if i == a.size
    set << sum
    return
  end
  -1.upto(1) do |m|
    dfs(a, i + 1, sum + a[i] * m, set)
  end
end
0