#include <cstdio>
int main() {
int i, n = 0, max = -1;
bool nowplus = true;
scanf("%d", &i);
do {
scanf("%d", &i);
if (nowplus) {
n += i;
} else {
n -= i;
}
if (max < n) {
max = n;
}
nowplus = !nowplus;
} while (n);
printf("%d\n", max);
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1088 KB |
Output is correct |
2 |
Correct |
0 ms |
1088 KB |
Output is correct |
3 |
Correct |
0 ms |
1088 KB |
Output is correct |
4 |
Correct |
0 ms |
1088 KB |
Output is correct |
5 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
6 |
Correct |
0 ms |
1088 KB |
Output is correct |
7 |
Correct |
0 ms |
1088 KB |
Output is correct |
8 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
9 |
Correct |
0 ms |
1088 KB |
Output is correct |
10 |
Correct |
0 ms |
1088 KB |
Output is correct |