結果

問題 No.451 575
ユーザー face4face4
提出日時 2019-10-17 20:51:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-06-25 00:38:09
合計ジャッジ時間 7,812 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 50 ms
10,880 KB
testcase_06 AC 87 ms
11,520 KB
testcase_07 AC 333 ms
14,720 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 128 ms
11,904 KB
testcase_11 AC 333 ms
13,952 KB
testcase_12 AC 429 ms
14,848 KB
testcase_13 AC 435 ms
14,720 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 40 ms
11,008 KB
testcase_16 AC 77 ms
11,264 KB
testcase_17 AC 333 ms
14,592 KB
testcase_18 AC 329 ms
14,592 KB
testcase_19 AC 229 ms
13,440 KB
testcase_20 AC 45 ms
10,880 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 441 ms
14,720 KB
testcase_24 AC 270 ms
12,160 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 29 ms
10,624 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 32 ms
10,752 KB
testcase_29 AC 60 ms
11,136 KB
testcase_30 AC 342 ms
14,592 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 132 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
b = [int(input()) for i in range(n)]
low, high = 1, 10**18
sign = 1    # sign of k
acc = 0
for i in range(n):
    if i%2 == 0:
        acc *= -1
        sign *= -1
        acc += b[i]
    else:
        acc -= b[i]
    
    if sign == 1:
        low = max(low, 1-acc)
    else:
        high = min(high, acc-1)

if low > high:
    print(-1)
    exit()

print(n+1)
print(low)
for i in range(n):
    low = b[i]-low if i%2 == 0 else low-b[i]
    print(low)
0