結果
問題 | No.451 575 |
ユーザー | mai |
提出日時 | 2016-12-02 00:41:15 |
言語 | Ruby (3.4.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 492 bytes |
コンパイル時間 | 483 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 14,208 KB |
最終ジャッジ日時 | 2024-12-16 08:38:17 |
合計ジャッジ時間 | 9,404 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 94 ms
12,160 KB |
testcase_03 | WA | - |
testcase_04 | AC | 98 ms
12,160 KB |
testcase_05 | AC | 100 ms
12,288 KB |
testcase_06 | AC | 109 ms
12,544 KB |
testcase_07 | AC | 156 ms
13,824 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 92 ms
12,032 KB |
testcase_15 | AC | 101 ms
12,160 KB |
testcase_16 | AC | 105 ms
12,672 KB |
testcase_17 | AC | 156 ms
13,824 KB |
testcase_18 | AC | 157 ms
13,824 KB |
testcase_19 | AC | 138 ms
13,440 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 94 ms
12,160 KB |
testcase_27 | AC | 94 ms
12,160 KB |
testcase_28 | AC | 93 ms
12,032 KB |
testcase_29 | AC | 102 ms
12,544 KB |
testcase_30 | AC | 155 ms
13,824 KB |
testcase_31 | AC | 92 ms
12,160 KB |
testcase_32 | AC | 117 ms
12,800 KB |
コンパイルメッセージ
Syntax OK
ソースコード
n = gets.to_i data = Array.new(n) result = Array.new(n+1) n.times{|i| data[i] = gets.to_i} b = 1 result[0] = data[0]-1 if (data[0]<=0) puts "-1";exit end 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) 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 #}