結果

問題 No.451 575
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-12-02 00:28:44
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 21,600 KB
最終ジャッジ日時 2024-12-16 07:42:38
合計ジャッジ時間 5,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,144 KB
testcase_01 AC 10 ms
6,016 KB
testcase_02 AC 11 ms
6,016 KB
testcase_03 AC 10 ms
6,144 KB
testcase_04 AC 9 ms
6,144 KB
testcase_05 AC 19 ms
6,528 KB
testcase_06 AC 42 ms
7,544 KB
testcase_07 AC 200 ms
14,820 KB
testcase_08 AC 11 ms
6,144 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 215 ms
21,600 KB
testcase_14 AC 10 ms
6,144 KB
testcase_15 AC 16 ms
6,400 KB
testcase_16 AC 40 ms
7,168 KB
testcase_17 AC 181 ms
12,644 KB
testcase_18 AC 183 ms
12,512 KB
testcase_19 AC 122 ms
10,252 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 10 ms
6,144 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 10 ms
6,144 KB
testcase_26 AC 10 ms
6,144 KB
testcase_27 AC 11 ms
6,144 KB
testcase_28 AC 11 ms
6,144 KB
testcase_29 AC 28 ms
6,784 KB
testcase_30 AC 182 ms
12,512 KB
testcase_31 AC 10 ms
6,272 KB
testcase_32 AC 69 ms
9,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
n = int(raw_input())
b = [int(raw_input()) for _ in xrange(n)]
a = [1] + [None] * n

for i in xrange(n):
    if i & 1:
        a[i+1] = a[i] - b[i]
    else:
        a[i+1] = b[i] - a[i]

if any(x <= 0 for x in a):
    print -1
else:
    print len(a)
    print '\n'.join(map(str, a))
0