結果

問題 No.451 575
ユーザー tnodinotnodino
提出日時 2023-07-09 18:59:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 650 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 25,728 KB
最終ジャッジ日時 2024-07-23 16:20:08
合計ジャッジ時間 7,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 47 ms
11,520 KB
testcase_06 AC 86 ms
13,440 KB
testcase_07 AC 318 ms
25,728 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 412 ms
22,912 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 39 ms
11,392 KB
testcase_16 AC 75 ms
12,928 KB
testcase_17 AC 322 ms
22,912 KB
testcase_18 AC 316 ms
23,424 KB
testcase_19 AC 217 ms
19,200 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 31 ms
10,752 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 31 ms
10,752 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 33 ms
11,008 KB
testcase_29 AC 58 ms
12,032 KB
testcase_30 AC 318 ms
24,064 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 127 ms
15,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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