結果

問題 No.451 575
ユーザー rlangevinrlangevin
提出日時 2023-09-15 12:28:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-07-02 15:48:05
合計ジャッジ時間 5,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 52 ms
63,616 KB
testcase_06 AC 56 ms
69,120 KB
testcase_07 AC 121 ms
81,024 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 44 ms
53,888 KB
testcase_10 AC 77 ms
76,596 KB
testcase_11 AC 103 ms
77,220 KB
testcase_12 AC 114 ms
76,928 KB
testcase_13 AC 115 ms
77,312 KB
testcase_14 AC 38 ms
51,812 KB
testcase_15 AC 51 ms
63,488 KB
testcase_16 AC 58 ms
69,696 KB
testcase_17 AC 92 ms
76,524 KB
testcase_18 AC 88 ms
76,676 KB
testcase_19 AC 80 ms
76,160 KB
testcase_20 AC 62 ms
68,992 KB
testcase_21 AC 48 ms
59,648 KB
testcase_22 AC 38 ms
52,480 KB
testcase_23 AC 115 ms
76,952 KB
testcase_24 AC 98 ms
76,544 KB
testcase_25 AC 37 ms
51,712 KB
testcase_26 AC 37 ms
52,608 KB
testcase_27 AC 39 ms
52,480 KB
testcase_28 AC 41 ms
53,120 KB
testcase_29 AC 56 ms
67,072 KB
testcase_30 AC 91 ms
76,292 KB
testcase_31 AC 38 ms
51,712 KB
testcase_32 AC 78 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# a2 = b1 - a1
# a3 = a2 - b2 = - b2 + b1 - a1
# a4 = b3 - a3 = b3 + b2 - b1 + a1
# a5 = a4 - b4 = -b4 + b3 + b2 - b1 + a1
# a6 = b5 - a5

import sys
input = sys.stdin.readline

N = int(input())
ans = [0] * N
v = 0
now = 0
for i in range(N):
    b = int(input())
    if i % 2:
        now = now - b
    else:
        now = b - now
    ans[i] = now
    if 2 <= i % 4 <= 3:
        v = min(v, now - 1)

a = max(1, -v)
for i in range(N):
    if i % 4 <= 1:
        ans[i] -= a
    else:
        ans[i] += a
    if ans[i] <= 0:
        print(-1)
        exit()

print(N + 1)
print(a)
for a in ans:
    print(a)
0