結果

問題 No.893 お客様を誘導せよ
ユーザー wonda_t_coffeewonda_t_coffee
提出日時 2020-02-07 22:31:20
言語 Ruby
(3.3.0)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-09-25 07:28:37
合計ジャッジ時間 2,475 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,288 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 106 ms
12,544 KB
testcase_03 AC 137 ms
13,440 KB
testcase_04 AC 138 ms
13,696 KB
testcase_05 AC 134 ms
13,184 KB
testcase_06 AC 122 ms
13,056 KB
testcase_07 AC 90 ms
12,160 KB
testcase_08 AC 179 ms
15,616 KB
testcase_09 AC 94 ms
12,544 KB
testcase_10 AC 89 ms
12,288 KB
testcase_11 AC 103 ms
12,160 KB
testcase_12 AC 99 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.chomp.to_i
a = []
ans = []
sum = 0
n.times do
  r = gets.chomp.split.map(&:to_i)
  sum += r.shift
  a << r
end
while ans.size < sum
  a.each do |ai|
    next if ai.empty?
    ans << ai.shift
  end
end
puts ans.join(' ')
0