結果

問題 No.451 575
ユーザー compass19compass19
提出日時 2016-12-08 23:22:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 508 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-12-16 11:00:38
合計ジャッジ時間 5,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 24 ms
10,880 KB
testcase_05 AC 35 ms
11,008 KB
testcase_06 AC 59 ms
11,648 KB
testcase_07 AC 216 ms
14,720 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 375 ms
14,848 KB
testcase_14 AC 24 ms
10,752 KB
testcase_15 AC 30 ms
11,008 KB
testcase_16 AC 55 ms
11,520 KB
testcase_17 AC 216 ms
14,720 KB
testcase_18 AC 213 ms
14,720 KB
testcase_19 AC 147 ms
13,568 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 24 ms
10,752 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 25 ms
10,880 KB
testcase_26 AC 24 ms
10,752 KB
testcase_27 AC 24 ms
10,752 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 42 ms
11,136 KB
testcase_30 AC 211 ms
14,720 KB
testcase_31 AC 25 ms
10,752 KB
testcase_32 AC 87 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
b = [int(input()) for _ in range(n)] 


for index, elm in enumerate(b):
	if index == 0:
		begin = 1
		end = elm - begin
		key = elm
	elif index%2:
		key = key - elm
		end = min(end, key-1)
	else:
		key = elm - key
		end = min(end, elm - key)
	if end < begin:
		print(-1)
		exit()

print(n+1)
for index, elm in enumerate(b):
	if index == 0:
		key = begin
		print(key)
		key = elm - key
		print(key)
		continue
	if index%2:
		key = key - elm
		print(key)
	else:
		key = elm - key
		print(key)
0