Submission details
Task:Maximum sum
Sender:aalto26cm_007
Submission time:2026-09-14 17:43:23 +0300
Language:C++ (C++23)
Status:READY
Result:
Test results
testverdicttime
#10.00 sdetails
#20.00 sdetails
#30.00 sdetails
#40.00 sdetails
#50.00 sdetails
#60.04 sdetails
#70.05 sdetails
#80.11 sdetails
#90.11 sdetails
#100.11 sdetails
#110.00 sdetails
#120.00 sdetails
#130.00 sdetails
#140.00 sdetails
#150.00 sdetails

Compiler report

input/code.cpp: In function 'int main(int, char**)':
input/code.cpp:18:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   18 |     for (int i=0; i<nums.size(); i++) {
      |                   ~^~~~~~~~~~~~

Code

#include <iostream>
#include <vector>

int main(int argc, char **argv) {
    int i;
    std::cin >> i;

    std::vector<int> nums;
    for (int x=0; x<i; x++) {
        int j;
        std::cin >> j;
        nums.push_back(j);
    }

    int last_index_l = 0;
    int max_cur_sum = 0;
    int cur_sum = 0;
    for (int i=0; i<nums.size(); i++) {
        cur_sum = cur_sum + nums.at(i);
        if (cur_sum > max_cur_sum) {
            max_cur_sum = cur_sum;
            last_index_l = i;
        }
    }

    int last_index_r = 0;
    max_cur_sum = 0;
    cur_sum = 0;
    for (int i=nums.size()-1; i>=0; i--) {
        cur_sum = cur_sum + nums.at(i);
        if (cur_sum > max_cur_sum) {
            max_cur_sum = cur_sum;
            last_index_r = i;
        }
    }

    int result = 0;
    for (int x=nums.size()-last_index_r; x<last_index_l; x--) {
        result = result + nums.at(x);
    }

    std::cout << result << std::endl;


    return 0;
}

Test details

Test 1

Verdict:

input
10
1 1 1 1 1 1 1 1 1 1

correct output
10

user output
0

Feedback: Incorrect character on line 1 col 1: expected "10", got "0"

Test 2

Verdict:

input
10
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1

correct output
-1

user output
0

Feedback: Incorrect character on line 1 col 1: expected "-1", got "0"

Test 3

Verdict:

input
10
24 7 -27 17 -67 65 -23 58 85 -...

correct output
185

user output
(empty)

Error:
terminate called after throwing an instance of 'std::out_of_range'
  what():  vector::_M_range_check: __n (which is 18446744073709551615) >= this->size() (which is 10)

Test 4

Verdict:

input
10
99 -59 31 83 -79 64 -20 -87 40...

correct output
154

user output
0

Feedback: Incorrect character on line 1 col 1: expected "154", got "0"

Test 5

Verdict:

input
10
-19 61 60 33 67 19 -8 92 59 -3...

correct output
383

user output
0

Feedback: Incorrect character on line 1 col 1: expected "383", got "0"

Test 6

Verdict:

input
200000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
200000

user output
0

Feedback: Incorrect character on line 1 col 1: expected "200000", got "0"

Test 7

Verdict:

input
200000
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...

correct output
-1

user output
0

Feedback: Incorrect character on line 1 col 1: expected "-1", got "0"

Test 8

Verdict:

input
200000
381082742 830199996 -85684827 ...

correct output
231210956017

user output
(empty)

Error:
terminate called after throwing an instance of 'std::out_of_range'
  what():  vector::_M_range_check: __n (which is 18446744073709551615) >= this->size() (which is 200000)

Test 9

Verdict:

input
200000
-935928962 -795492223 75287481...

correct output
184607318819

user output
0

Feedback: Incorrect character on line 1 col 1: expected "184607318819", got "0"

Test 10

Verdict:

input
200000
524408131 613017181 -62281009 ...

correct output
360019999220

user output
0

Feedback: Incorrect character on line 1 col 1: expected "360019999220", got "0"

Test 11

Verdict:

input
1
1

correct output
1

user output
0

Feedback: Incorrect character on line 1 col 1: expected "1", got "0"

Test 12

Verdict:

input
1
-2

correct output
-2

user output
0

Feedback: Incorrect character on line 1 col 1: expected "-2", got "0"

Test 13

Verdict:

input
5
-1 -1 -1 -1 -2

correct output
-1

user output
0

Feedback: Incorrect character on line 1 col 1: expected "-1", got "0"

Test 14

Verdict:

input
2
-3 -2

correct output
-2

user output
0

Feedback: Incorrect character on line 1 col 1: expected "-2", got "0"

Test 15

Verdict:

input
1
-1000000000

correct output
-1000000000

user output
0

Feedback: Incorrect character on line 1 col 1: expected "-1000000000", got "0"