結果

問題 No.451 575
ユーザー miraxialmiraxial
提出日時 2016-12-02 22:48:33
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 511 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-05-09 19:03:14
合計ジャッジ時間 6,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
12,288 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 70 ms
12,160 KB
testcase_03 WA -
testcase_04 AC 70 ms
12,160 KB
testcase_05 AC 80 ms
12,288 KB
testcase_06 AC 90 ms
12,672 KB
testcase_07 AC 234 ms
19,968 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 76 ms
12,288 KB
testcase_15 AC 77 ms
12,544 KB
testcase_16 AC 91 ms
13,184 KB
testcase_17 AC 187 ms
19,840 KB
testcase_18 AC 148 ms
14,848 KB
testcase_19 AC 147 ms
16,896 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 72 ms
12,160 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 70 ms
12,288 KB
testcase_26 AC 70 ms
12,288 KB
testcase_27 AC 72 ms
12,160 KB
testcase_28 AC 75 ms
12,288 KB
testcase_29 AC 88 ms
12,800 KB
testcase_30 AC 198 ms
20,096 KB
testcase_31 AC 73 ms
12,416 KB
testcase_32 AC 133 ms
16,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:40: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

n=gets.to_i
a=[]
n.times do |i|
  a<< gets.to_i
end
c=0
b=[]
b<< 1+c
(n/2).times do |i|
  g=a[i*2]-b[i*2]
  c+=1-g if i%2==1&&g<1
  b<< g
  g=b[i*2+1]-a[i*2+1]
  c+=1-g if i%2==0&&g<1
  b<< g
end
(n%2).times do
  b<< a[-1]-b[-1]
end
c=0
(n+1).times do |i|
  c+=b[i] if 1>b[i]
end
b=[]
b<< 2-c
(n/2).times do |i|
  g=a[i*2]-b[i*2]
  c+=1-g if i%2==1&&g<1
  b<< g
  g=b[i*2+1]-a[i*2+1]
  c+=1-g if i%2==0&&g<1
  b<< g
end
(n%2).times do
  b<< a[-1]-b[-1]
end
if b.all?{|i|i>0}
  puts n+1,b.*("\n")
else
  p -1
end
0