結果

問題 No.10 +か×か
ユーザー letrangerjpletrangerjp
提出日時 2017-05-14 17:06:35
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,414 ms / 5,000 ms
コード長 485 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 58,796 KB
最終ジャッジ日時 2024-05-08 11:54:22
合計ジャッジ時間 4,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 884 ms
45,544 KB
testcase_04 AC 113 ms
12,544 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 1,414 ms
58,796 KB
testcase_07 AC 839 ms
35,552 KB
testcase_08 AC 144 ms
14,592 KB
testcase_09 AC 175 ms
16,256 KB
testcase_10 AC 86 ms
12,160 KB
testcase_11 AC 87 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f(a, total)
  r = []
  dp = {}
  g = lambda{|res, idx|
    return false if res > total
    return res == total if idx == a.size
    return false if dp[[res,idx]]
    dp[[res,idx]] = true

    [:+, :*].each{|op|
      new_res = res.send(op, a[idx])
      r << op
      if g.(new_res, idx+1)
        return true
      end
      r.pop
    }
    false
  }
  first = a.shift
  g.(first, 0)
  r
end

N = gets.to_i
Total = gets.to_i
A = gets.split.take(N).map(&:to_i)
puts f(A, Total)*""
0