結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,416 KB
testcase_01 AC 80 ms
12,416 KB
testcase_02 AC 77 ms
12,416 KB
testcase_03 AC 84 ms
12,288 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 80 ms
12,288 KB
testcase_09 AC 81 ms
12,160 KB
testcase_10 AC 128 ms
12,800 KB
testcase_11 AC 224 ms
13,696 KB
testcase_12 AC 269 ms
13,952 KB
testcase_13 AC 265 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,416 KB
testcase_21 AC 88 ms
12,416 KB
testcase_22 AC 85 ms
12,416 KB
testcase_23 AC 276 ms
14,080 KB
testcase_24 AC 198 ms
13,440 KB
testcase_25 AC 82 ms
12,288 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:25: 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
if 1-x>y-1
  puts -1
else
  puts n+1
  for i in 0..n
    puts a[i]+(if i%4==0||i%4==3 then 1-x else x-1 end)
  end
end
0