結果

問題 No.451 575
ユーザー titiatitia
提出日時 2023-08-02 03:19:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,660 KB
最終ジャッジ日時 2024-10-11 22:30:39
合計ジャッジ時間 6,773 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 44 ms
11,392 KB
testcase_06 AC 84 ms
13,568 KB
testcase_07 AC 329 ms
25,660 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 125 ms
13,696 KB
testcase_11 AC 316 ms
19,948 KB
testcase_12 AC 411 ms
22,528 KB
testcase_13 AC 411 ms
22,648 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 37 ms
11,136 KB
testcase_16 AC 75 ms
12,800 KB
testcase_17 AC 324 ms
22,784 KB
testcase_18 AC 329 ms
22,648 KB
testcase_19 AC 230 ms
18,644 KB
testcase_20 AC 42 ms
11,392 KB
testcase_21 AC 34 ms
10,880 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 420 ms
23,296 KB
testcase_24 AC 247 ms
16,768 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 31 ms
10,880 KB
testcase_29 AC 57 ms
12,032 KB
testcase_30 AC 342 ms
23,340 KB
testcase_31 AC 29 ms
10,752 KB
testcase_32 AC 129 ms
15,616 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

if PLUS==[]:
    PLUS=[0]
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