結果

問題 No.909 たぴの配置
ユーザー qsako6qsako6
提出日時 2019-11-08 23:43:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 440 ms / 3,000 ms
コード長 264 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-09-15 02:47:03
合計ジャッジ時間 7,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,032 KB
testcase_01 AC 84 ms
12,032 KB
testcase_02 AC 86 ms
12,032 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 86 ms
12,032 KB
testcase_05 AC 427 ms
36,992 KB
testcase_06 AC 436 ms
37,248 KB
testcase_07 AC 413 ms
34,944 KB
testcase_08 AC 428 ms
36,864 KB
testcase_09 AC 437 ms
37,120 KB
testcase_10 AC 415 ms
34,816 KB
testcase_11 AC 408 ms
34,816 KB
testcase_12 AC 429 ms
36,864 KB
testcase_13 AC 440 ms
36,992 KB
testcase_14 AC 416 ms
35,072 KB
testcase_15 AC 415 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 << (x[i] < y[i] ? x[i] : d - y[i])
end
pos << d
pos.map! { |pi| pi + 1000000000 }
puts d
puts pos
0