結果

問題 No.451 575
ユーザー nebukuro09nebukuro09
提出日時 2016-12-02 00:21:56
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-05-09 16:57:08
合計ジャッジ時間 5,665 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,400 KB
testcase_01 AC 11 ms
6,400 KB
testcase_02 AC 11 ms
6,400 KB
testcase_03 AC 11 ms
6,528 KB
testcase_04 AC 11 ms
6,400 KB
testcase_05 AC 21 ms
6,656 KB
testcase_06 AC 43 ms
7,168 KB
testcase_07 AC 176 ms
10,368 KB
testcase_08 AC 12 ms
6,400 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 258 ms
12,800 KB
testcase_14 AC 11 ms
6,528 KB
testcase_15 AC 17 ms
6,528 KB
testcase_16 AC 38 ms
7,296 KB
testcase_17 AC 176 ms
10,368 KB
testcase_18 AC 178 ms
10,368 KB
testcase_19 AC 117 ms
9,088 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 12 ms
6,400 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 12 ms
6,400 KB
testcase_26 AC 11 ms
6,528 KB
testcase_27 AC 12 ms
6,400 KB
testcase_28 AC 13 ms
6,528 KB
testcase_29 AC 28 ms
6,656 KB
testcase_30 AC 179 ms
10,496 KB
testcase_31 AC 11 ms
6,400 KB
testcase_32 AC 67 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
b = [int(raw_input()) for _ in xrange(N)]
a = [0 for _ in xrange(N+1)]
a[0] = 1
for i in xrange(1, N+1):
    a[i] = b[i-1] - a[i-1] if i % 2 == 1 else a[i-1] - b[i-1]
    if a[i] <= 0:
        print -1
        exit()
print N+1
for x in a:
    print x
0