結果

問題 No.451 575
ユーザー maimai
提出日時 2016-12-02 01:16:04
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 732 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-05-09 18:02:54
合計ジャッジ時間 6,433 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,160 KB
testcase_01 AC 79 ms
12,288 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 77 ms
12,288 KB
testcase_04 AC 80 ms
12,160 KB
testcase_05 AC 86 ms
12,416 KB
testcase_06 AC 91 ms
12,416 KB
testcase_07 AC 139 ms
13,952 KB
testcase_08 AC 80 ms
12,160 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 247 ms
14,080 KB
testcase_14 AC 80 ms
12,160 KB
testcase_15 AC 83 ms
12,288 KB
testcase_16 AC 89 ms
12,672 KB
testcase_17 AC 132 ms
13,952 KB
testcase_18 AC 135 ms
14,080 KB
testcase_19 AC 121 ms
13,312 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 80 ms
12,288 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 81 ms
12,160 KB
testcase_26 AC 79 ms
12,160 KB
testcase_27 AC 85 ms
12,288 KB
testcase_28 AC 82 ms
12,288 KB
testcase_29 AC 89 ms
12,544 KB
testcase_30 AC 134 ms
14,208 KB
testcase_31 AC 86 ms
12,160 KB
testcase_32 AC 98 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

@n = gets.to_i

@data = Array.new(@n)
@result = Array.new(@n+1)

@n.times{|i| @data[i] = gets.to_i}

1.upto(20){|k|
    def calc(k)
        b = k
        return false if b<=0 
        @result[0] = k
        @n.times{|i|
            b = @result[i+1] = (@data[i]-b) if i%2==0
            b = @result[i+1] = (b-@data[i]) if i%2==1
            if (b<=0 || 10**18<b)
                return false
            end
        }
        return true
    end
    if !calc(k)
        @result[0]=nil
        next
    else
        break
    end
}
if !@result[0]
    puts "-1";exit
end

puts @n+1
@result.each{|e| puts e}

#0.upto(@n-1){|i|
#    p @result[i]+@result[i+1] == @data[i] if i%2==0
#    p @result[i]-@result[i+1] == @data[i] if i%2==1
#}
0