結果

問題 No.451 575
ユーザー ikdikd
提出日時 2017-03-31 19:06:07
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 395 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-07-07 04:46:37
合計ジャッジ時間 7,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,288 KB
testcase_01 AC 75 ms
12,288 KB
testcase_02 RE -
testcase_03 AC 71 ms
12,288 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 71 ms
12,032 KB
testcase_09 AC 72 ms
12,032 KB
testcase_10 AC 118 ms
13,184 KB
testcase_11 AC 196 ms
15,104 KB
testcase_12 AC 235 ms
15,616 KB
testcase_13 AC 234 ms
15,488 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 80 ms
12,416 KB
testcase_21 AC 74 ms
12,288 KB
testcase_22 AC 70 ms
12,032 KB
testcase_23 AC 235 ms
15,616 KB
testcase_24 AC 170 ms
14,336 KB
testcase_25 AC 74 ms
12,288 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
  raise unless l<=r
end

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

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

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