結果

問題 No.451 575
ユーザー tnodinotnodino
提出日時 2023-07-09 18:57:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-07-23 16:17:49
合計ジャッジ時間 8,236 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 44 ms
11,136 KB
testcase_06 AC 76 ms
12,288 KB
testcase_07 AC 280 ms
20,096 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 378 ms
18,560 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 38 ms
11,008 KB
testcase_16 AC 68 ms
11,776 KB
testcase_17 AC 276 ms
18,688 KB
testcase_18 AC 277 ms
18,688 KB
testcase_19 AC 189 ms
16,000 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 30 ms
10,624 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 29 ms
10,624 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 53 ms
11,392 KB
testcase_30 AC 277 ms
19,200 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 113 ms
13,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
b = list(int(input()) for _ in range(n))
a = [1]
for i in range(n):
    if i % 2 == 0:
        a.append(b[i] - a[-1])
    else:
        a.append(a[-1] - b[i])
for i in range(n+1):
    if a[i] <= 0:
        print(-1)
        exit()
print(n+1)
for i in range(n+1):
    print(a[i])
0