#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
vector<int>d(n - 1);
int x = 1e6, diff = 0;
for(int i = 0; i < n - 1; i++) {
cin >> d[i];
diff += d[i];
x = min(x, diff);
}
if(x < 0) x = abs(x) + 1;
cout << x << " ";
int curVal = x;
for(int i = 0; i < n - 1; i++) {
curVal += d[i];
cout << curVal << " ";
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
48 ms |
4024 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
56 ms |
4392 KB |
Output is correct |
4 |
Incorrect |
48 ms |
2640 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |