結果

問題 No.451 575
ユーザー koba-e964koba-e964
提出日時 2016-12-03 00:46:41
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-05-09 19:06:56
合計ジャッジ時間 9,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,160 KB
testcase_01 AC 94 ms
12,288 KB
testcase_02 AC 86 ms
12,288 KB
testcase_03 AC 88 ms
12,416 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 83 ms
12,288 KB
testcase_09 AC 87 ms
12,416 KB
testcase_10 AC 139 ms
12,928 KB
testcase_11 AC 240 ms
13,568 KB
testcase_12 AC 287 ms
14,208 KB
testcase_13 AC 272 ms
14,080 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 95 ms
12,288 KB
testcase_21 AC 92 ms
12,416 KB
testcase_22 AC 87 ms
12,416 KB
testcase_23 AC 279 ms
14,208 KB
testcase_24 AC 202 ms
13,184 KB
testcase_25 AC 88 ms
12,160 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 86 ms
12,416 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
x=a[0]
y=a[1]
for i in 0..n
  if i%4==0||i%4==3
    x=[a[i],x].min
  else
    y=[a[i],y].max
  end
end
lim=10**18
xl=1-x
xh=lim-x
yl=y-lim
yh=y-1
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