Task: | Maximum sum |
Sender: | arnxxau |
Submission time: | 2024-09-16 16:41:08 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.00 s | details |
#2 | WRONG ANSWER | 0.00 s | details |
#3 | WRONG ANSWER | 0.00 s | details |
#4 | WRONG ANSWER | 0.00 s | details |
#5 | WRONG ANSWER | 0.00 s | details |
#6 | WRONG ANSWER | 0.04 s | details |
#7 | WRONG ANSWER | 0.05 s | details |
#8 | WRONG ANSWER | 0.10 s | details |
#9 | WRONG ANSWER | 0.10 s | details |
#10 | WRONG ANSWER | 0.10 s | details |
#11 | WRONG ANSWER | 0.00 s | details |
#12 | WRONG ANSWER | 0.00 s | details |
#13 | WRONG ANSWER | 0.00 s | details |
#14 | WRONG ANSWER | 0.00 s | details |
#15 | WRONG ANSWER | 0.00 s | details |
Compiler report
input/code.cpp:23:22: warning: integer constant is so large that it is unsigned 23 | long int maxe = -9999999999999999999; | ^~~~~~~~~~~~~~~~~~~ input/code.cpp: In function 'int main()': input/code.cpp:23:21: warning: overflow in conversion from '__int128' to 'long int' changes value from '-0x8ac7230489e7ffff' to '8446744073709551617' [-Woverflow] 23 | long int maxe = -9999999999999999999; | ^~~~~~~~~~~~~~~~~~~~
Code
#include <algorithm> #include <iostream> #include <queue> #include <vector> using namespace std; int main() { long int n; cin >> n; vector<long int> a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } vector<long int> maxEnd(n); maxEnd[0] = a[0]; long int maxe = -9999999999999999999; for (int i = 1; i < n; ++i) { maxEnd[i] = max(maxEnd[i - 1] + a[i], a[i]); if (maxEnd[i] > maxe) maxe = maxEnd[i]; } /* for (int i = 0; i < n; i++) { cout << maxEnd[i] << " "; } cout << endl; */ cout << maxe << endl; // cin >> n >> m; // vector<vector<char> > map(n, vector<char>(m)); // vector<vector<pair<int, int> > > path(n, vector<pair<int, int> >(m)); }
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
10 1 1 1 1 1 1 1 1 1 1 |
correct output |
---|
10 |
user output |
---|
8446744073709551617 |
Test 2
Verdict: WRONG ANSWER
input |
---|
10 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 |
correct output |
---|
-1 |
user output |
---|
8446744073709551617 |
Test 3
Verdict: WRONG ANSWER
input |
---|
10 24 7 -27 17 -67 65 -23 58 85 -... |
correct output |
---|
185 |
user output |
---|
8446744073709551617 |
Test 4
Verdict: WRONG ANSWER
input |
---|
10 99 -59 31 83 -79 64 -20 -87 40... |
correct output |
---|
154 |
user output |
---|
8446744073709551617 |
Test 5
Verdict: WRONG ANSWER
input |
---|
10 -19 61 60 33 67 19 -8 92 59 -3... |
correct output |
---|
383 |
user output |
---|
8446744073709551617 |
Test 6
Verdict: WRONG ANSWER
input |
---|
200000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
200000 |
user output |
---|
8446744073709551617 |
Test 7
Verdict: WRONG ANSWER
input |
---|
200000 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ... |
correct output |
---|
-1 |
user output |
---|
8446744073709551617 |
Test 8
Verdict: WRONG ANSWER
input |
---|
200000 381082742 830199996 -85684827 ... |
correct output |
---|
231210956017 |
user output |
---|
8446744073709551617 |
Test 9
Verdict: WRONG ANSWER
input |
---|
200000 -935928962 -795492223 75287481... |
correct output |
---|
184607318819 |
user output |
---|
8446744073709551617 |
Test 10
Verdict: WRONG ANSWER
input |
---|
200000 524408131 613017181 -62281009 ... |
correct output |
---|
360019999220 |
user output |
---|
8446744073709551617 |
Test 11
Verdict: WRONG ANSWER
input |
---|
1 1 |
correct output |
---|
1 |
user output |
---|
8446744073709551617 |
Test 12
Verdict: WRONG ANSWER
input |
---|
1 -2 |
correct output |
---|
-2 |
user output |
---|
8446744073709551617 |
Test 13
Verdict: WRONG ANSWER
input |
---|
5 -1 -1 -1 -1 -2 |
correct output |
---|
-1 |
user output |
---|
8446744073709551617 |
Test 14
Verdict: WRONG ANSWER
input |
---|
2 -3 -2 |
correct output |
---|
-2 |
user output |
---|
8446744073709551617 |
Test 15
Verdict: WRONG ANSWER
input |
---|
1 -1000000000 |
correct output |
---|
-1000000000 |
user output |
---|
8446744073709551617 |