結果

問題 No.451 575
ユーザー hanorverhanorver
提出日時 2016-12-02 10:29:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 287 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-05-09 18:38:30
合計ジャッジ時間 10,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 39 ms
11,008 KB
testcase_06 AC 64 ms
11,648 KB
testcase_07 AC 230 ms
15,616 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 111 ms
12,800 KB
testcase_11 AC 407 ms
16,896 KB
testcase_12 AC 523 ms
18,688 KB
testcase_13 AC 373 ms
18,688 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 59 ms
11,008 KB
testcase_16 AC 284 ms
11,776 KB
testcase_17 AC 828 ms
18,688 KB
testcase_18 AC 244 ms
15,616 KB
testcase_19 AC 1,059 ms
14,976 KB
testcase_20 AC 40 ms
11,008 KB
testcase_21 AC 32 ms
10,880 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 381 ms
18,816 KB
testcase_24 AC 272 ms
14,592 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 27 ms
10,880 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 58 ms
10,752 KB
testcase_29 AC 59 ms
11,648 KB
testcase_30 TLE -
testcase_31 AC 28 ms
10,880 KB
testcase_32 AC 100 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
b=[int(input()) for _ in range(n)]
i=m=0
a=[1]*(n+1)
while i<n:
 if i%2:a[i+1]=a[i]-b[i]
 else:a[i+1]=b[i]-a[i]
 if 0>=a[i+1]or a[i+1]>10**18:a[0]+=-a[i+1]+1;i=-1;m+=1
 if m==100:print(-1);exit()
 i+=1
if a[0]<=0:print(-1);exit()
print(n+1)
for _ in range(n+1):print(a[_])
0