結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 AC 12 ms
6,272 KB
testcase_02 AC 11 ms
6,400 KB
testcase_03 AC 12 ms
6,272 KB
testcase_04 AC 12 ms
6,272 KB
testcase_05 AC 22 ms
6,656 KB
testcase_06 AC 50 ms
7,416 KB
testcase_07 AC 210 ms
15,076 KB
testcase_08 AC 11 ms
6,272 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 235 ms
21,476 KB
testcase_14 AC 13 ms
6,400 KB
testcase_15 AC 18 ms
6,400 KB
testcase_16 AC 41 ms
7,296 KB
testcase_17 AC 202 ms
12,640 KB
testcase_18 AC 203 ms
12,388 KB
testcase_19 AC 136 ms
10,508 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 11 ms
6,272 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 12 ms
6,272 KB
testcase_26 AC 11 ms
6,272 KB
testcase_27 AC 12 ms
6,400 KB
testcase_28 AC 14 ms
6,400 KB
testcase_29 AC 30 ms
6,912 KB
testcase_30 AC 210 ms
12,512 KB
testcase_31 AC 11 ms
6,400 KB
testcase_32 AC 83 ms
9,012 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