結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 WA -
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 43 ms
10,880 KB
testcase_06 AC 71 ms
11,392 KB
testcase_07 AC 249 ms
14,720 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 377 ms
18,688 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 30 ms
10,880 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 30 ms
10,880 KB
testcase_26 WA -
testcase_27 AC 30 ms
10,880 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 106 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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