結果

問題 No.451 575
ユーザー ryusukeryusuke
提出日時 2023-07-09 19:04:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-07-23 16:25:07
合計ジャッジ時間 6,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 42 ms
11,008 KB
testcase_06 AC 69 ms
11,648 KB
testcase_07 AC 232 ms
15,616 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 32 ms
11,008 KB
testcase_10 AC 109 ms
12,800 KB
testcase_11 AC 338 ms
16,896 KB
testcase_12 AC 433 ms
18,688 KB
testcase_13 AC 349 ms
18,816 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 39 ms
10,880 KB
testcase_16 AC 78 ms
11,776 KB
testcase_17 AC 337 ms
18,816 KB
testcase_18 AC 234 ms
15,616 KB
testcase_19 AC 238 ms
14,976 KB
testcase_20 AC 42 ms
11,136 KB
testcase_21 AC 34 ms
10,880 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 351 ms
18,688 KB
testcase_24 AC 235 ms
14,592 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 35 ms
10,880 KB
testcase_29 AC 56 ms
11,520 KB
testcase_30 AC 353 ms
18,688 KB
testcase_31 AC 31 ms
10,880 KB
testcase_32 AC 102 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# verification-helper: PROBLEM https://yukicoder.me/problems/no/451

def main() -> None:
    n = int(input())
    b = [int(input()) for _ in range(n)]
    i, mid = 0, 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 or a[i + 1] > 10**18:
            a[0] += 1 - a[i + 1]
            i = -1
            mid += 1
        if mid == 10:
            exit(print(-1))
        i += 1
    
    if a[0] <= 0:
        exit(print(-1))
    
    print(n + 1)
    for i in range(n + 1):
        print(a[i])


if __name__ == "__main__":
    main()
0