結果

問題 No.451 575
ユーザー ikdikd
提出日時 2017-03-31 18:44:26
言語 Ruby
(3.3.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-07-07 04:45:57
合計ジャッジ時間 6,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,032 KB
testcase_01 AC 81 ms
12,288 KB
testcase_02 AC 82 ms
12,288 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 81 ms
12,288 KB
testcase_05 AC 89 ms
12,416 KB
testcase_06 AC 99 ms
12,416 KB
testcase_07 AC 205 ms
13,312 KB
testcase_08 AC 84 ms
12,288 KB
testcase_09 AC 85 ms
12,160 KB
testcase_10 AC 136 ms
13,184 KB
testcase_11 AC 233 ms
15,104 KB
testcase_12 AC 277 ms
15,744 KB
testcase_13 AC 270 ms
15,744 KB
testcase_14 AC 83 ms
12,160 KB
testcase_15 AC 89 ms
12,288 KB
testcase_16 AC 99 ms
12,672 KB
testcase_17 AC 158 ms
13,184 KB
testcase_18 AC 158 ms
13,184 KB
testcase_19 AC 138 ms
12,800 KB
testcase_20 AC 93 ms
12,416 KB
testcase_21 AC 89 ms
12,160 KB
testcase_22 AC 89 ms
12,288 KB
testcase_23 AC 283 ms
15,744 KB
testcase_24 AC 199 ms
14,208 KB
testcase_25 AC 83 ms
12,160 KB
testcase_26 AC 84 ms
12,288 KB
testcase_27 AC 82 ms
12,288 KB
testcase_28 AC 89 ms
12,160 KB
testcase_29 AC 102 ms
12,544 KB
testcase_30 AC 160 ms
13,184 KB
testcase_31 AC 82 ms
12,288 KB
testcase_32 AC 123 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
b=[]
n.times do
  b<< gets.to_i
end

l, r=1, 10**18
b.each_with_index do |e, i|
  if i.even?
    l, r=[1, e-r].max, e-l
  else
    l, r=[1, l-e].max, r-e
  end
end

if l>r
  puts (-1)
  exit(0)
end

a=[(l+r)/2]
(n-1).downto 0 do |i|
  if (i+1).even?
    a<< b[i]+a.last
  else
    a<< b[i]-a.last
  end
end

puts a.size
a.reverse.map{|e| puts e}
0