Submission details
Task:Maximum sum
Sender:Sanzis
Submission time:2025-09-15 16:48:59 +0300
Language:Python3 (PyPy3)
Status:READY
Result:
Test results
testverdicttime
#10.06 sdetails
#20.06 sdetails
#30.07 sdetails
#40.06 sdetails
#50.06 sdetails
#60.10 sdetails
#70.11 sdetails
#80.12 sdetails
#90.12 sdetails
#100.12 sdetails
#110.06 sdetails
#120.06 sdetails
#130.07 sdetails
#140.06 sdetails
#150.06 sdetails

Code

fline = int(input(""))
sline = list(int(x) for x in input("").split(" "))

#fline = 8
#sline = [-1, 3, -2, 5, 3, -5, 2, 2]
currentMax = []

def checker(i1, i2):
    if i1 != i2:
        currentMax[0] = max(currentMax[0], sum(sline[i1: i2]))
        checker(i1+1, i2)
        checker(i1, i2-1)

checker(0, fline)
print(currentMax[0])

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 14, in <module>
    checke...

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 14, in <module>
    checke...

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 14, in <module>
    checke...

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 14, in <module>
    checke...

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 14, in <module>
    checke...

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 14, in <module>
    checke...

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 14, in <module>
    checke...

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 14, in <module>
    checke...

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 14, in <module>
    checke...

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 14, in <module>
    checke...

Test 11

Verdict:

input
1
1

correct output
1

user output
(empty)

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

Test 12

Verdict:

input
1
-2

correct output
-2

user output
(empty)

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

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 14, in <module>
    checke...

Test 14

Verdict:

input
2
-3 -2

correct output
-2

user output
(empty)

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

Test 15

Verdict:

input
1
-1000000000

correct output
-1000000000

user output
(empty)

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