結果

問題 No.909 たぴの配置
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-12-06 17:56:10
言語 Ruby
(3.3.0)
結果
AC  
実行時間 445 ms / 3,000 ms
コード長 280 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 35,712 KB
最終ジャッジ日時 2024-06-06 02:08:01
合計ジャッジ時間 7,518 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,032 KB
testcase_01 AC 89 ms
12,032 KB
testcase_02 AC 88 ms
12,032 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 90 ms
12,032 KB
testcase_05 AC 426 ms
35,328 KB
testcase_06 AC 431 ms
35,712 KB
testcase_07 AC 410 ms
34,944 KB
testcase_08 AC 432 ms
35,328 KB
testcase_09 AC 445 ms
35,584 KB
testcase_10 AC 415 ms
35,072 KB
testcase_11 AC 414 ms
34,816 KB
testcase_12 AC 420 ms
35,200 KB
testcase_13 AC 435 ms
35,584 KB
testcase_14 AC 412 ms
35,072 KB
testcase_15 AC 410 ms
34,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def min(a,b); a < b ? a : b; end
  
N = gets.to_i
X = gets.split.map(&:to_i)
Y = gets.split.map(&:to_i)

L = N.times.inject(Float::INFINITY) do |d,i|
  min(d, X[i] + Y[i])
end
P = Array.new(N + 2, 0)
P[0] = 0
P[N + 1] = L
N.times do |i|
  P[i + 1] = min(L, X[i])
end
puts L
puts P
0