結果

問題 No.451 575
ユーザー koba-e964koba-e964
提出日時 2016-12-03 00:51:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-05-09 19:27:00
合計ジャッジ時間 6,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,288 KB
testcase_01 AC 82 ms
12,288 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 83 ms
12,416 KB
testcase_05 AC 92 ms
12,544 KB
testcase_06 AC 105 ms
12,672 KB
testcase_07 AC 257 ms
20,224 KB
testcase_08 AC 82 ms
12,160 KB
testcase_09 AC 83 ms
12,288 KB
testcase_10 AC 136 ms
12,672 KB
testcase_11 AC 255 ms
13,440 KB
testcase_12 AC 289 ms
13,824 KB
testcase_13 AC 283 ms
13,952 KB
testcase_14 AC 85 ms
12,416 KB
testcase_15 AC 90 ms
12,160 KB
testcase_16 AC 102 ms
12,800 KB
testcase_17 AC 175 ms
13,952 KB
testcase_18 AC 181 ms
14,080 KB
testcase_19 AC 151 ms
13,440 KB
testcase_20 AC 95 ms
12,416 KB
testcase_21 AC 86 ms
12,160 KB
testcase_22 AC 86 ms
12,288 KB
testcase_23 AC 291 ms
14,080 KB
testcase_24 AC 204 ms
13,440 KB
testcase_25 AC 89 ms
12,160 KB
testcase_26 AC 83 ms
12,416 KB
testcase_27 AC 84 ms
12,288 KB
testcase_28 AC 90 ms
12,160 KB
testcase_29 AC 96 ms
12,672 KB
testcase_30 AC 174 ms
13,952 KB
testcase_31 AC 86 ms
12,160 KB
testcase_32 AC 151 ms
14,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:32: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

n=gets.to_i
b=Array.new(n)
for i in 0...n
  b[i]=gets.to_i
end
a=Array.new(n+1)
a[0]=0
for i in 0...n
  if i%2==0
    a[i+1]=b[i]-a[i]
  else
    a[i+1]=a[i]-b[i]
  end
end
lim=10**18
xl=1-a[0]
xh=lim-a[0]
yl=a[1]-lim
yh=a[1]-1
for i in 0..n
  if i%4==0||i%4==3
    xl=[1-a[i],xl].max
    xh=[lim-a[i],xh].min
  else
    yl=[a[i]-lim,yl].max
    yh=[a[i]-1,yh].min
  end
end
xl=[xl,yl].max
xh=[xh,yh].min
if xl>xh
  puts -1
else
  puts n+1
  for i in 0..n
    puts a[i]+(if i%4==0||i%4==3 then xl else -xl end)
  end
end
0