# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
144272 | islingr | 평균 (COCI14_prosjek) | Cpython 3 | 26 ms | 3428 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
n = int(input())
b = list(map(int, input().split()))
print(b[0], end=" ")
for i in range(1, n):
print((i + 1) * b[i] - i * b[i - 1], end = " ")
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |