結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 10 ms
6,812 KB
testcase_02 AC 10 ms
6,944 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 25 ms
6,944 KB
testcase_06 AC 59 ms
7,676 KB
testcase_07 AC 303 ms
16,608 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 212 ms
21,472 KB
testcase_14 AC 10 ms
6,940 KB
testcase_15 AC 17 ms
6,944 KB
testcase_16 AC 48 ms
7,424 KB
testcase_17 AC 264 ms
14,284 KB
testcase_18 AC 270 ms
14,156 KB
testcase_19 AC 185 ms
11,568 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 11 ms
6,944 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 11 ms
6,940 KB
testcase_26 AC 10 ms
6,940 KB
testcase_27 AC 11 ms
6,944 KB
testcase_28 AC 13 ms
6,944 KB
testcase_29 AC 37 ms
7,040 KB
testcase_30 AC 265 ms
14,156 KB
testcase_31 AC 10 ms
6,940 KB
testcase_32 AC 105 ms
9,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

seed = [1, b[0]//2+1, b[0]//2, b[0]//2-1]

for a0 in seed:
    a = [a0] + [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 all(x > 0 for x in a):
        print len(a)
        print '\n'.join(map(str, a))
        exit(0)

print -1
0