結果
問題 | No.451 575 |
ユーザー | ryusuke |
提出日時 | 2023-07-09 19:01:50 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 659 bytes |
コンパイル時間 | 134 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 15,744 KB |
最終ジャッジ日時 | 2024-07-23 16:21:52 |
合計ジャッジ時間 | 7,228 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 42 ms
11,136 KB |
testcase_06 | AC | 68 ms
11,648 KB |
testcase_07 | AC | 240 ms
15,616 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 30 ms
10,752 KB |
testcase_15 | AC | 37 ms
11,008 KB |
testcase_16 | AC | 62 ms
11,520 KB |
testcase_17 | AC | 239 ms
15,616 KB |
testcase_18 | AC | 238 ms
15,616 KB |
testcase_19 | AC | 167 ms
13,952 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 31 ms
10,752 KB |
testcase_27 | AC | 31 ms
10,880 KB |
testcase_28 | AC | 33 ms
10,880 KB |
testcase_29 | AC | 52 ms
11,264 KB |
testcase_30 | AC | 238 ms
15,616 KB |
testcase_31 | WA | - |
testcase_32 | AC | 99 ms
12,288 KB |
ソースコード
# 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] = a[i] + b[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()