結果
問題 | No.451 575 |
ユーザー | maspy |
提出日時 | 2020-03-07 08:10:21 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 885 bytes |
コンパイル時間 | 142 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 36,824 KB |
最終ジャッジ日時 | 2024-10-14 11:38:28 |
合計ジャッジ時間 | 10,397 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 28 ms
10,624 KB |
testcase_05 | AC | 36 ms
11,520 KB |
testcase_06 | AC | 57 ms
13,152 KB |
testcase_07 | AC | 188 ms
26,332 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 29 ms
10,752 KB |
testcase_27 | AC | 28 ms
10,880 KB |
testcase_28 | WA | - |
testcase_29 | AC | 46 ms
11,904 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 81 ms
15,932 KB |
ソースコード
#!/usr/bin/env python3 # %% import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines # %% N, *B = map(int, read().split()) # %% A0 = [0] * (N + 1) A1 = [1] + [0] * N for i, x in enumerate(B): if i % 2 == 0: A0[i + 1] = x - A0[i] A1[i + 1] = x - A1[i] else: A0[i + 1] = A0[i] - x A1[i + 1] = A1[i] - x # %% U = 10 ** 18 left = 0 right = U for x, y in zip(A0, A1): dx = y - x if dx == 1: L = -x R = U - x else: L = x - U R = x if left < L: left = L if right > R: right = R # %% if left > right: print(-1) exit() # %% A = [0] * (N + 1) A[0] = left for i, x in enumerate(B): if i % 2 == 0: A[i + 1] = x - A[i] else: A[i + 1] = A[i] - x print(len(A)) print('\n'.join(map(str, A)))