結果

問題 No.451 575
ユーザー rlangevinrlangevin
提出日時 2023-09-15 12:25:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 81,660 KB
最終ジャッジ日時 2024-07-02 15:45:36
合計ジャッジ時間 5,892 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,416 KB
testcase_01 AC 37 ms
53,412 KB
testcase_02 AC 37 ms
53,560 KB
testcase_03 AC 37 ms
52,076 KB
testcase_04 AC 38 ms
53,244 KB
testcase_05 AC 50 ms
64,060 KB
testcase_06 AC 53 ms
68,508 KB
testcase_07 AC 111 ms
81,660 KB
testcase_08 AC 37 ms
51,996 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 112 ms
76,744 KB
testcase_14 AC 39 ms
53,084 KB
testcase_15 AC 48 ms
62,304 KB
testcase_16 AC 52 ms
67,712 KB
testcase_17 AC 84 ms
76,692 KB
testcase_18 AC 85 ms
76,856 KB
testcase_19 AC 74 ms
75,844 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 36 ms
52,604 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 38 ms
52,400 KB
testcase_26 AC 37 ms
51,876 KB
testcase_27 AC 39 ms
54,788 KB
testcase_28 AC 39 ms
55,132 KB
testcase_29 AC 51 ms
65,672 KB
testcase_30 AC 86 ms
76,600 KB
testcase_31 AC 37 ms
52,804 KB
testcase_32 AC 74 ms
78,324 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 i % 4 <= 1:
        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