結果

問題 No.115 遠足のおやつ
ユーザー code-devocode-devo
提出日時 2016-01-20 17:36:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 655 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-10 23:43:09
合計ジャッジ時間 4,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 74 ms
12,160 KB
testcase_04 AC 76 ms
12,288 KB
testcase_05 AC 77 ms
12,160 KB
testcase_06 AC 74 ms
12,160 KB
testcase_07 AC 77 ms
12,288 KB
testcase_08 AC 74 ms
12,288 KB
testcase_09 AC 74 ms
12,288 KB
testcase_10 AC 76 ms
12,416 KB
testcase_11 AC 73 ms
12,288 KB
testcase_12 AC 74 ms
12,288 KB
testcase_13 AC 75 ms
12,288 KB
testcase_14 AC 73 ms
12,288 KB
testcase_15 AC 76 ms
12,160 KB
testcase_16 AC 73 ms
12,288 KB
testcase_17 AC 73 ms
12,160 KB
testcase_18 AC 76 ms
12,160 KB
testcase_19 AC 77 ms
12,160 KB
testcase_20 AC 77 ms
12,160 KB
testcase_21 AC 75 ms
12,288 KB
testcase_22 AC 75 ms
12,288 KB
testcase_23 AC 74 ms
12,160 KB
testcase_24 AC 76 ms
12,160 KB
testcase_25 AC 74 ms
12,288 KB
testcase_26 AC 75 ms
12,288 KB
testcase_27 AC 77 ms
12,160 KB
testcase_28 AC 75 ms
12,160 KB
testcase_29 AC 75 ms
12,160 KB
testcase_30 AC 76 ms
12,160 KB
testcase_31 AC 78 ms
12,160 KB
testcase_32 AC 74 ms
12,288 KB
testcase_33 AC 75 ms
12,160 KB
testcase_34 AC 73 ms
12,160 KB
testcase_35 AC 76 ms
12,288 KB
testcase_36 AC 73 ms
12,416 KB
testcase_37 AC 75 ms
12,416 KB
testcase_38 AC 74 ms
12,160 KB
testcase_39 AC 75 ms
12,416 KB
testcase_40 AC 76 ms
12,160 KB
testcase_41 AC 76 ms
12,288 KB
testcase_42 AC 76 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:30: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

class Array
  def sum
    self.size > 0 ? self.inject(&:+) : 0
  end
end

N, D, K = gets.split.map(&:to_i)

ns = *(1..N)
a = ns.shift(K)
b = []

# bになるべく大きい数値を詰めることで、aには小さい数値が残る。
while a.size > 0 && ns.size > 0 && a.sum + b.sum - a[-1] + ns[-1] < D do
  ns.unshift a.pop
  n = ns.pop
  b.unshift n
end

# 微妙に足りなければ、aの末尾をちょっと大きいものに取り換える。
idx = D - (a.sum + b.sum) - 1
if idx >= 0 && ns[idx] then
  b.unshift ns.delete_at(idx)
  a.pop
end

if a.size + b.size == K && a.sum + b.sum == D then
  puts a.concat(b).join(" ")
else
  puts -1
end
0