結果

問題 No.451 575
ユーザー kimiyukikimiyuki
提出日時 2016-12-02 02:37:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,296 KB
最終ジャッジ日時 2024-05-09 19:02:29
合計ジャッジ時間 6,986 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 51 ms
11,264 KB
testcase_06 AC 92 ms
12,544 KB
testcase_07 AC 378 ms
20,224 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 150 ms
13,824 KB
testcase_11 AC 397 ms
19,968 KB
testcase_12 AC 458 ms
22,656 KB
testcase_13 AC 462 ms
22,656 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 38 ms
11,136 KB
testcase_16 AC 80 ms
12,160 KB
testcase_17 AC 389 ms
18,688 KB
testcase_18 AC 383 ms
18,688 KB
testcase_19 AC 241 ms
16,000 KB
testcase_20 AC 43 ms
11,264 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 454 ms
23,296 KB
testcase_24 AC 283 ms
16,896 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 60 ms
11,520 KB
testcase_30 AC 374 ms
19,456 KB
testcase_31 AC 27 ms
10,880 KB
testcase_32 AC 147 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
n = int(input())
b = [ int(input()) for _ in range(n) ]
def f(a1):
    a = [ None ] * (n+1)
    a[0] = a1
    for i in range(n):
        if (i+1 + 1) % 2 == 0:
            a[i+1] = - a[i] + b[i]
        else:
            a[i+1] = a[i] - b[i]
    return a
lower = 1
upper = 10**18
a = f(0)
for i in range(n+1):
    if ((i+1) // 2) % 2 == 0:
        lower = max(lower, 1      - a[i])
        upper = min(upper, 10**18 - a[i])
    else:
        lower = max(lower, a[i] - 10**18)
        upper = min(upper, a[i] - 1     )
if lower <= upper:
    print(n+1)
    for ai in f(lower):
        print(ai)
else:
    print(-1)
0