CSES - Datatähti 2024 alku - Results
Submission details
Task:Lumimyrsky
Sender:clearcast
Submission time:2023-11-01 21:31:49 +0200
Language:Python3 (PyPy3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.08 sdetails
#20.08 sdetails
#30.08 sdetails
#40.08 sdetails
#50.08 sdetails
#60.08 sdetails
#70.08 sdetails
#80.08 sdetails
#90.08 sdetails
#100.08 sdetails
#110.08 sdetails

Code

lista = [int(ele) for ele in syöte.split()]
puolet = len(lista)//2
l=lista[:puolet]
l2=lista[puolet:]
#pitäis laskea vaan ylämäet
v = [l[i+1]-l[i] for i in range(len(l)-1)]
print(v)
for i in v:
    if i<=0:
        v.remove(i)
print(v)
v2 = [l2[i+1]-l2[i] for i in range(len(l2)-1)]
print(v2)
for i in v2:
    if i<=0:
        v2.remove(i)
print(v2)
#tarkistetaan kumpi suurempi
if sum(v)<sum(v2):
    print("1")
else:
    print("2")

Test details

Test 1

Verdict:

input
0 0 1 1 1 2 2 2 1 0
0 1 2 3 2 2 3 0 1 1

correct output
1

user output
(empty)

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

Test 2

Verdict:

input
1 1 1 1 1 1 1 1 0 1
1 0 0 0 1 0 1 0 0 0

correct output
1

user output
(empty)

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

Test 3

Verdict:

input
1 2 2 2 0 0 0 2 0 0
0 1 0 1 1 2 1 2 1 2

correct output
1

user output
(empty)

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

Test 4

Verdict:

input
4 2 0 10 6 10 4 5 4 3
3 1 2 7 6 1 3 5 2 6

correct output
2

user output
(empty)

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

Test 5

Verdict:

input
6 0 7 9 3 1 5 6 9 4
9 0 1 0 2 2 0 1 4 7

correct output
2

user output
(empty)

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

Test 6

Verdict:

input
10 9 6 1 10 9 7 6 7 6
2 1 10 2 0 7 2 9 4 6

correct output
1

user output
(empty)

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

Test 7

Verdict:

input
22 5 87 83 20 36 92 98 49 9
61 40 77 35 52 49 29 100 18 81

correct output
1

user output
(empty)

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

Test 8

Verdict:

input
90 95 33 21 82 6 4 37 10 99
60 10 53 61 42 53 33 48 62 83

correct output
2

user output
(empty)

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

Test 9

Verdict:

input
7 22 78 32 44 98 73 46 98 31
54 26 50 8 7 42 27 1 50 53

correct output
2

user output
(empty)

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

Test 10

Verdict:

input
88 1 97 24 87 38 53 82 23 42
1 61 43 77 40 40 52 88 48 93

correct output
2

user output
(empty)

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

Test 11

Verdict:

input
1 36 50 50 50 0 13 31 14 1
22 88 42 13 25 13 8 39 34 49

correct output
1

user output
(empty)

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