結果
問題 | No.10 +か×か |
ユーザー | らっしー(raccy) |
提出日時 | 2015-10-21 23:46:46 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 124 ms / 5,000 ms |
コード長 | 1,354 bytes |
コンパイル時間 | 296 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 13,952 KB |
最終ジャッジ日時 | 2024-12-14 15:32:41 |
合計ジャッジ時間 | 2,076 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
12,288 KB |
testcase_01 | AC | 82 ms
12,288 KB |
testcase_02 | AC | 84 ms
12,288 KB |
testcase_03 | AC | 124 ms
13,952 KB |
testcase_04 | AC | 86 ms
12,160 KB |
testcase_05 | AC | 81 ms
12,160 KB |
testcase_06 | AC | 105 ms
13,440 KB |
testcase_07 | AC | 87 ms
12,160 KB |
testcase_08 | AC | 82 ms
12,160 KB |
testcase_09 | AC | 84 ms
12,160 KB |
testcase_10 | AC | 83 ms
12,288 KB |
testcase_11 | AC | 85 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
class NiseOCR def initialize(list) @list = list @minmax_list = list.inject([[1, 0]]) do |accs, i| accs << [ [accs[-1][0] + i, accs[-1][0] * i].min, [accs[-1][1] + i, accs[-1][1] * i].max, ] end @memory = {} end def calc(total, point) pair = [total, point] return @memory[pair] if @memory.include?(pair) kaito_list = [] if point == 0 if total == @list[point] return '' else @memory[pair] = nil return end end # * if total % @list[point] == 0 next_total = total / @list[point] if @minmax_list[point][0] <= next_total && next_total <= @minmax_list[point][1] if (next_calc = calc(next_total, point - 1)) kaito_list << next_calc + '*' end end end # + next_total = total - @list[point] if @minmax_list[point][0] <= next_total && next_total <= @minmax_list[point][1] if (next_calc = calc(next_total, point - 1)) kaito_list << next_calc + '+' end end if kaito_list.empty? @memory[pair] = nil return else kaito = kaito_list.max @memory[pair] = kaito return kaito end end end n = gets.to_i total = gets.to_i list = gets.split.map(&:to_i) nocr = NiseOCR.new(list) puts nocr.calc(total, n - 1)