結果

問題 No.451 575
ユーザー titiatitia
提出日時 2023-08-02 03:19:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 604 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,648 KB
最終ジャッジ日時 2024-10-11 22:30:13
合計ジャッジ時間 8,231 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 48 ms
11,264 KB
testcase_06 AC 90 ms
13,056 KB
testcase_07 AC 352 ms
25,648 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 34 ms
10,624 KB
testcase_10 AC 129 ms
13,568 KB
testcase_11 AC 323 ms
19,840 KB
testcase_12 AC 432 ms
22,528 KB
testcase_13 AC 419 ms
22,388 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 41 ms
11,008 KB
testcase_16 AC 82 ms
12,672 KB
testcase_17 AC 345 ms
22,528 KB
testcase_18 AC 341 ms
22,264 KB
testcase_19 AC 235 ms
18,304 KB
testcase_20 AC 45 ms
11,136 KB
testcase_21 AC 35 ms
10,624 KB
testcase_22 RE -
testcase_23 AC 429 ms
23,168 KB
testcase_24 AC 258 ms
16,768 KB
testcase_25 AC 30 ms
10,624 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 33 ms
10,752 KB
testcase_29 AC 62 ms
11,776 KB
testcase_30 AC 336 ms
23,108 KB
testcase_31 AC 30 ms
10,624 KB
testcase_32 AC 139 ms
15,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
B=[int(input()) for i in range(n)]

MINUS=[]
PLUS=[]

c=0
now=0

for i in range(n):
    if c==0 or c==1:
        if c==0:
            now=-now+B[i]
        else:
            now-=B[i]
        MINUS.append(now)
        
    else:
        if c==2:
            now=-now+B[i]
        else:
            now-=B[i]
        PLUS.append(now)
        

    c+=1
    c%=4

ANS=[max(1,-min(PLUS)+1)]
for i in range(n):
    if i%2==0:
        ANS.append(B[i]-ANS[-1])
    else:
        ANS.append(ANS[-1]-B[i])

if min(ANS)<=0:
    print(-1)
else:
    print(n+1)
    for ans in ANS:
        print(ans)
0