結果

問題 No.909 たぴの配置
ユーザー qsako6qsako6
提出日時 2019-11-09 01:41:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 414 ms / 3,000 ms
コード長 221 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-09-15 03:45:50
合計ジャッジ時間 7,278 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 87 ms
12,288 KB
testcase_04 AC 86 ms
12,032 KB
testcase_05 AC 402 ms
36,736 KB
testcase_06 AC 402 ms
37,248 KB
testcase_07 AC 381 ms
35,072 KB
testcase_08 AC 401 ms
36,864 KB
testcase_09 AC 414 ms
37,120 KB
testcase_10 AC 388 ms
34,944 KB
testcase_11 AC 386 ms
34,816 KB
testcase_12 AC 393 ms
36,864 KB
testcase_13 AC 407 ms
36,992 KB
testcase_14 AC 386 ms
34,816 KB
testcase_15 AC 387 ms
34,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
x = gets.split.map(&:to_i)
y = gets.split.map(&:to_i)
d = Float::INFINITY
n.times do |i|
  d = [d, x[i] + y[i]].min
end

pos = [0]
n.times do |i|
  pos << (d <= x[i] ? d : x[i])
end
pos << d
puts d
puts pos
0