結果

問題 No.451 575
ユーザー miraxialmiraxial
提出日時 2016-12-02 22:54:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 25,456 KB
最終ジャッジ日時 2024-05-09 19:24:19
合計ジャッジ時間 8,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 100 ms
12,800 KB
testcase_06 AC 137 ms
13,952 KB
testcase_07 AC 629 ms
25,456 KB
testcase_08 AC 91 ms
12,288 KB
testcase_09 AC 90 ms
12,288 KB
testcase_10 AC 129 ms
13,312 KB
testcase_11 AC 203 ms
16,000 KB
testcase_12 AC 239 ms
17,920 KB
testcase_13 AC 223 ms
17,024 KB
testcase_14 AC 88 ms
12,288 KB
testcase_15 AC 96 ms
12,160 KB
testcase_16 AC 126 ms
13,952 KB
testcase_17 AC 338 ms
22,016 KB
testcase_18 AC 319 ms
22,016 KB
testcase_19 AC 244 ms
19,072 KB
testcase_20 AC 93 ms
12,160 KB
testcase_21 AC 88 ms
12,288 KB
testcase_22 AC 86 ms
12,288 KB
testcase_23 AC 242 ms
17,792 KB
testcase_24 AC 174 ms
15,360 KB
testcase_25 AC 92 ms
12,160 KB
testcase_26 AC 85 ms
12,160 KB
testcase_27 AC 90 ms
12,160 KB
testcase_28 AC 89 ms
12,288 KB
testcase_29 AC 112 ms
13,312 KB
testcase_30 AC 342 ms
21,888 KB
testcase_31 AC 86 ms
12,288 KB
testcase_32 AC 273 ms
16,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:22: 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=1
e=0
while true do
b=[]
b<< 2-c
(n/2).times do |i|
  b<< a[i*2]-b[i*2]
  b<< b[i*2+1]-a[i*2+1]
end
(n%2).times do
  b<< a[-1]-b[-1]
end
if b.all?{|i|i>0}
  puts n+1,b.*("\n")
  break
elsif e==10
  p -1
  break
end
c=1
(n+1).times do |i|
  c=b[i] if c>b[i]
end
e+=1
end
0