結果

問題 No.451 575
ユーザー hanorverhanorver
提出日時 2016-12-02 10:24:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,448 KB
最終ジャッジ日時 2024-12-16 10:09:01
合計ジャッジ時間 9,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,448 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 39 ms
10,880 KB
testcase_06 AC 67 ms
11,520 KB
testcase_07 AC 236 ms
15,360 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 387 ms
18,688 KB
testcase_14 AC 48 ms
10,624 KB
testcase_15 AC 40 ms
10,624 KB
testcase_16 AC 71 ms
11,264 KB
testcase_17 AC 246 ms
15,232 KB
testcase_18 AC 240 ms
15,232 KB
testcase_19 AC 174 ms
13,696 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 30 ms
10,624 KB
testcase_23 WA -
testcase_24 TLE -
testcase_25 AC 28 ms
10,496 KB
testcase_26 AC 29 ms
10,624 KB
testcase_27 AC 65 ms
10,496 KB
testcase_28 AC 37 ms
10,752 KB
testcase_29 AC 58 ms
11,008 KB
testcase_30 AC 238 ms
15,232 KB
testcase_31 AC 30 ms
10,624 KB
testcase_32 AC 101 ms
17,536 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 a[i+1]<=0:a[0]=-a[i+1]+1;i=-1;m+=1
 if m==1000:print(-1);exit()
 i+=1
if a[0]<=0:print(-1);exit()
print(n+1)
for _ in range(n+1):print(a[_])
0