結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 82 ms
12,288 KB
testcase_03 AC 86 ms
12,160 KB
testcase_04 AC 84 ms
12,288 KB
testcase_05 AC 83 ms
12,160 KB
testcase_06 AC 82 ms
12,160 KB
testcase_07 AC 82 ms
12,160 KB
testcase_08 AC 82 ms
12,288 KB
testcase_09 AC 80 ms
12,288 KB
testcase_10 AC 82 ms
12,160 KB
testcase_11 AC 83 ms
12,416 KB
testcase_12 AC 82 ms
12,160 KB
testcase_13 AC 84 ms
12,288 KB
testcase_14 AC 87 ms
12,288 KB
testcase_15 AC 86 ms
12,288 KB
testcase_16 AC 89 ms
12,160 KB
testcase_17 AC 88 ms
12,160 KB
testcase_18 AC 88 ms
12,160 KB
testcase_19 AC 90 ms
12,288 KB
testcase_20 AC 90 ms
12,160 KB
testcase_21 AC 87 ms
12,288 KB
testcase_22 AC 85 ms
12,032 KB
testcase_23 AC 86 ms
12,288 KB
testcase_24 AC 85 ms
12,416 KB
testcase_25 AC 85 ms
12,160 KB
testcase_26 AC 87 ms
12,160 KB
testcase_27 AC 82 ms
12,160 KB
testcase_28 AC 81 ms
12,288 KB
testcase_29 AC 85 ms
12,160 KB
testcase_30 AC 85 ms
12,160 KB
testcase_31 AC 81 ms
12,416 KB
testcase_32 AC 81 ms
12,416 KB
testcase_33 AC 82 ms
12,160 KB
testcase_34 AC 83 ms
12,416 KB
testcase_35 AC 81 ms
12,416 KB
testcase_36 AC 83 ms
12,288 KB
testcase_37 AC 83 ms
12,288 KB
testcase_38 AC 82 ms
12,160 KB
testcase_39 AC 84 ms
12,160 KB
testcase_40 AC 82 ms
12,160 KB
testcase_41 AC 81 ms
12,288 KB
testcase_42 AC 81 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:31: 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

if a.sum + b.sum < D then
  idx = D - (a.sum + b.sum) - 1
  if ns[idx] then
    b.unshift ns.delete_at(idx)
    a.pop
  end
end

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