0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:05:24 +00:00
OI-codes/Luogu/P1115/P1115.cpp
2022-04-02 19:29:39 +08:00

25 lines
421 B
C++

#include <iostream>
#include <limits>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 2e5 + 5;
int n, f[N], ans = std::numeric_limits<int>::min();
int main() {
std::ios::sync_with_stdio(false);
cin >> n;
for (int i = 1, x; i <= n; i++) {
cin >> x;
f[i] = std::max(f[i - 1] + x, x);
ans = std::max(ans, f[i]);
}
cout << ans << endl;
return 0;
}