CSES - Aalto Competitive Programming 2024 - wk3 - Mon - Results
Submission details
Task:Maximum sum
Sender:laluj
Submission time:2024-09-16 17:48:41 +0300
Language:CPython3
Status:READY
Result:
Test results
testverdicttime
#10.02 sdetails
#20.02 sdetails
#30.02 sdetails
#40.02 sdetails
#50.02 sdetails
#60.02 sdetails
#70.02 sdetails
#80.02 sdetails
#90.02 sdetails
#100.02 sdetails
#110.02 sdetails
#120.02 sdetails
#130.02 sdetails
#140.02 sdetails
#150.02 sdetails

Code

import sys

def main():
    n = int(sys.argv[1])
    
    arr = [int(sys.argv[i+2]) for i in range(n)]
    
    current_sum = arr[0]
    max_sum = arr[0]
    
    for i in range(1, n):
        current_sum = max(arr[i], current_sum + arr[i])
        max_sum = max(max_sum, current_sum)
    
    print(max_sum)

if __name__ == "__main__":
    main()

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 "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

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 "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

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 "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

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 "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

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 "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

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 "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

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 "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

Test 8

Verdict:

input
200000
381082742 830199996 -85684827 ...

correct output
231210956017

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

Test 9

Verdict:

input
200000
-935928962 -795492223 75287481...

correct output
184607318819

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

Test 10

Verdict:

input
200000
524408131 613017181 -62281009 ...

correct output
360019999220

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

Test 11

Verdict:

input
1
1

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

Test 12

Verdict:

input
1
-2

correct output
-2

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

Test 13

Verdict:

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

correct output
-1

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

Test 14

Verdict:

input
2
-3 -2

correct output
-2

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range

Test 15

Verdict:

input
1
-1000000000

correct output
-1000000000

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 18, in <module>
    main()
  File "/box/input/code.py", line 4, in main
    n = int(sys.argv[1])
IndexError: list index out of range