Submission details
Task:Maximum sum
Sender:banghalq
Submission time:2025-09-15 16:28:05 +0300
Language:Python3 (PyPy3)
Status:READY
Result:
Test results
testverdicttime
#10.06 sdetails
#20.06 sdetails
#30.06 sdetails
#40.06 sdetails
#50.06 sdetails
#60.10 sdetails
#70.10 sdetails
#80.13 sdetails
#90.13 sdetails
#100.13 sdetails
#110.07 sdetails
#120.07 sdetails
#130.06 sdetails
#140.06 sdetails
#150.07 sdetails

Code

n = [int(x) for x in input().split()][0]
array = [int(x) for x in input().split()]

solution = [0 for _ in range(n+1)] #by size

for i in range(1,n+1):
    solution[i] = max(solution[i-1] + array[i], array[i])

print(solution[-1])

Test details

Test 1

Verdict:

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

correct output
10

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 2

Verdict:

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

correct output
-1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 3

Verdict:

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

correct output
185

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 4

Verdict:

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

correct output
154

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 5

Verdict:

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

correct output
383

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

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
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 7

Verdict:

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

correct output
-1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 8

Verdict:

input
200000
381082742 830199996 -85684827 ...

correct output
231210956017

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 9

Verdict:

input
200000
-935928962 -795492223 75287481...

correct output
184607318819

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 10

Verdict:

input
200000
524408131 613017181 -62281009 ...

correct output
360019999220

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 11

Verdict:

input
1
1

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 12

Verdict:

input
1
-2

correct output
-2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 13

Verdict:

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

correct output
-1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 14

Verdict:

input
2
-3 -2

correct output
-2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...

Test 15

Verdict:

input
1
-1000000000

correct output
-1000000000

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    solutio...