結果

問題 No.115 遠足のおやつ
ユーザー code-devocode-devo
提出日時 2016-01-20 17:36:59
言語 Ruby
(3.4.1)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 655 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 8,064 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2025-01-03 01:10:51
合計ジャッジ時間 4,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,544 KB
testcase_01 AC 78 ms
12,544 KB
testcase_02 AC 79 ms
12,800 KB
testcase_03 AC 79 ms
12,672 KB
testcase_04 AC 82 ms
12,672 KB
testcase_05 AC 80 ms
12,544 KB
testcase_06 AC 78 ms
12,800 KB
testcase_07 AC 78 ms
12,800 KB
testcase_08 AC 81 ms
12,672 KB
testcase_09 AC 80 ms
12,672 KB
testcase_10 AC 81 ms
12,672 KB
testcase_11 AC 80 ms
12,672 KB
testcase_12 AC 79 ms
13,056 KB
testcase_13 AC 78 ms
12,928 KB
testcase_14 AC 79 ms
12,800 KB
testcase_15 AC 79 ms
12,800 KB
testcase_16 AC 78 ms
12,928 KB
testcase_17 AC 78 ms
12,800 KB
testcase_18 AC 81 ms
12,800 KB
testcase_19 AC 85 ms
12,672 KB
testcase_20 AC 80 ms
12,928 KB
testcase_21 AC 81 ms
12,800 KB
testcase_22 AC 81 ms
12,928 KB
testcase_23 AC 80 ms
12,928 KB
testcase_24 AC 78 ms
12,928 KB
testcase_25 AC 81 ms
12,928 KB
testcase_26 AC 82 ms
12,544 KB
testcase_27 AC 81 ms
12,672 KB
testcase_28 AC 77 ms
12,672 KB
testcase_29 AC 80 ms
12,928 KB
testcase_30 AC 83 ms
12,672 KB
testcase_31 AC 78 ms
12,672 KB
testcase_32 AC 77 ms
12,928 KB
testcase_33 AC 76 ms
12,672 KB
testcase_34 AC 77 ms
13,056 KB
testcase_35 AC 80 ms
12,672 KB
testcase_36 AC 78 ms
12,800 KB
testcase_37 AC 80 ms
12,800 KB
testcase_38 AC 83 ms
12,672 KB
testcase_39 AC 81 ms
12,928 KB
testcase_40 AC 82 ms
12,544 KB
testcase_41 AC 79 ms
12,928 KB
testcase_42 AC 80 ms
12,800 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