CSES - Datatähti 2020 alku - Results
Submission details
Task:Mastot
Sender:The_Anthony
Submission time:2019-10-07 09:52:45 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.02 s1, 2, 3details
#20.02 s1, 2, 3details
#30.02 s1, 2, 3details
#40.02 s1, 2, 3details
#50.02 s1, 2, 3details
#6ACCEPTED0.03 s1, 2, 3details
#7ACCEPTED0.02 s1, 2, 3details
#8ACCEPTED0.02 s1, 2, 3details
#90.02 s1, 2, 3details
#100.02 s1, 2, 3details
#11ACCEPTED0.07 s1, 2, 3details
#12ACCEPTED0.08 s1, 2, 3details
#13ACCEPTED0.10 s1, 2, 3details
#14ACCEPTED0.20 s1, 2, 3details
#15ACCEPTED0.11 s1, 2, 3details
#16ACCEPTED0.08 s1, 2, 3details
#17ACCEPTED0.08 s1, 2, 3details
#18ACCEPTED0.19 s1, 2, 3details
#190.02 s1, 2, 3details
#200.72 s1, 2, 3details
#210.04 s2, 3details
#220.03 s2, 3details
#230.10 s2, 3details
#240.08 s2, 3details
#250.04 s2, 3details
#260.04 s2, 3details
#270.04 s2, 3details
#280.06 s2, 3details
#290.06 s2, 3details
#300.06 s2, 3details
#310.06 s2, 3details
#320.06 s2, 3details
#330.06 s2, 3details
#340.24 s3details
#350.24 s3details
#36--3details
#37--3details
#380.28 s3details
#390.24 s3details
#400.24 s3details
#41--3details
#42--3details
#43--3details
#44--3details
#45--3details
#46--3details

Code

"""
7
2 1 3 3 2 4 1
1 1 1 1 1 1

Tulostus:
(1, 2, 3, 4, 5), (1, 2, 3, 4, 6), (1, 2, 3, 5), (1, 2, 3, 6), (1, 2, 4, 5), (1, 2, 4, 6), (1, 2, 5), (1, 2, 3, 4, 5), (1, 2, 3, 4, 6), (1, 2, 3, 5), (1, 2, 3, 6), (1, 2, 4, 5), (1, 2, 4, 6), (1, 2, 5), (2, 3, 4, 5), (2, 3, 4, 6), (2, 3, 5), (2, 3, 6), (2, 4, 5), (2, 4, 6), (2, 5)
"""


def syöttö():
    etäisyys = int(input())
    kantamasyöte = input().split()
    kantamat = tuple(map(int, kantamasyöte))
    hintasyöte = input().split()
    hinnat = tuple(map(int, hintasyöte))

    # Lähetin + Mastot
    mastot = {0: {"kantama": kantamat[0], "hinta": 0}}
    for i in range(etäisyys-1):
        kantama, hinta = kantamat[i+1], hinnat[i]
        mastot[i+1] = {"kantama": kantama, "hinta": hinta}

    return mastot, etäisyys


def luo_jonot(mastot, etäisyys):
    """
    :param mastot: dic
    :param etäisyys: int
    :return:
    """
    mastotuple = tuple(mastot)

    def seuraavat_mastot(nyt_masto, mastot, etäisyys, edellisetmastot=None,
                         mastotlista=[]):
        """
        :param nyt_masto: n:nnes masto
        :param mastot: dic
        :param etäisyys: int
        :param edellisetmastot: Jätä tyhjäksi
        :param mastotlista: Jätä tyhjäksi
        :return:
        """
        # Nykyisen maston kantama
        kantama = mastot[nyt_masto]["kantama"]

        if edellisetmastot is None:
            # Tänne tallentuu kaikki jonot
            edellisetmastot = []
        else:
            # Luodaan uusi lista, jottei muuteta muita listoja
            edellisetmastot = [] + edellisetmastot

        # Lisätään nykyinen masto
        edellisetmastot.append(nyt_masto)

        # Jos kantamaa riittää vastaanottimeen,
        # siirrytään listan seuraavaan jonoon
        if nyt_masto + kantama >= etäisyys:
            mastotlista.append(edellisetmastot)
            return

        # Tarkista seuraava masto
        for seuraava_masto in mastotuple[nyt_masto + 1:nyt_masto + kantama + 1]:
            seuraavat_mastot(seuraava_masto, mastot, etäisyys,
                             edellisetmastot, mastotlista)

        return mastotlista

    mastojenjonot = []
    for läheinen_masto in mastotuple[1:mastot[0]["kantama"] + 1]:
        mastojenjonot += seuraavat_mastot(läheinen_masto, mastot, etäisyys)

    return mastojenjonot


def iter_hinta(mastot, jonot):
    """Printtaa halvimman jonon."""
    for jono in jonot:
        hinta = 0
        for masto in jono:
            hinta += mastot[masto]["hinta"]
        yield hinta


mastot, etäisyys = syöttö()
jonot = luo_jonot(mastot, etäisyys)
print(min(iter_hinta(mastot, jonot)))

Test details

Test 1

Group: 1, 2, 3

Verdict: ACCEPTED

input
6
2 2 3 1 2 4
4 1 3 4 2

correct output
3

user output
3

Test 2

Group: 1, 2, 3

Verdict:

input
2
1 1
1

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
TypeError: 'NoneType' object is not iterable

Test 3

Group: 1, 2, 3

Verdict:

input
2
2 1
1

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
TypeError: 'NoneType' object is not iterable

Test 4

Group: 1, 2, 3

Verdict:

input
3
2 2 1
1 2

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
TypeError: 'NoneType' object is not iterable

Test 5

Group: 1, 2, 3

Verdict:

input
3
2 2 1
2 1

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
TypeError: 'NoneType' object is not iterable

Test 6

Group: 1, 2, 3

Verdict: ACCEPTED

input
4
1 1 1 1
1000000000 1000000000 10000000...

correct output
3000000000

user output
3000000000

Test 7

Group: 1, 2, 3

Verdict: ACCEPTED

input
20
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
19000000000

user output
19000000000

Test 8

Group: 1, 2, 3

Verdict: ACCEPTED

input
20
1 1 2 1 1 1 2 1 1 2 1 1 1 2 1 ...

correct output
4609157377

user output
4609157377

Test 9

Group: 1, 2, 3

Verdict:

input
20
20 20 20 20 20 20 20 20 20 20 ...

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
TypeError: 'NoneType' object is not iterable

Test 10

Group: 1, 2, 3

Verdict:

input
19
16 10 9 17 1 16 19 4 18 13 5 3...

correct output
8424700

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
TypeError: 'NoneType' object is not iterable

Test 11

Group: 1, 2, 3

Verdict: ACCEPTED

input
20
2 4 3 4 4 4 4 1 1 3 4 2 1 3 3 ...

correct output
2817777553

user output
2817777553

Test 12

Group: 1, 2, 3

Verdict: ACCEPTED

input
20
4 4 4 4 3 4 1 3 4 1 1 4 1 3 1 ...

correct output
3020673750

user output
3020673750

Test 13

Group: 1, 2, 3

Verdict: ACCEPTED

input
20
5 1 3 4 2 4 2 2 5 1 3 3 2 4 1 ...

correct output
2064735712

user output
2064735712

Test 14

Group: 1, 2, 3

Verdict: ACCEPTED

input
20
8 1 2 6 8 6 9 1 4 9 9 8 6 3 3 ...

correct output
378551508

user output
378551508

Test 15

Group: 1, 2, 3

Verdict: ACCEPTED

input
20
5 2 8 9 4 10 1 8 9 9 8 1 7 8 9...

correct output
457149308

user output
457149308

Test 16

Group: 1, 2, 3

Verdict: ACCEPTED

input
20
7 6 2 6 1 3 10 4 6 3 5 2 2 10 ...

correct output
471575451

user output
471575451

Test 17

Group: 1, 2, 3

Verdict: ACCEPTED

input
20
6 2 2 3 8 7 2 10 8 9 6 3 10 5 ...

correct output
620685913

user output
620685913

Test 18

Group: 1, 2, 3

Verdict: ACCEPTED

input
20
4 5 3 8 2 8 5 9 6 3 7 5 1 6 9 ...

correct output
1132427688

user output
1132427688

Test 19

Group: 1, 2, 3

Verdict:

input
20
15 9 7 18 3 20 19 20 17 16 16 ...

correct output
333300698

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
TypeError: 'NoneType' object is not iterable

Test 20

Group: 1, 2, 3

Verdict:

input
20
19 18 17 16 15 14 13 12 11 10 ...

correct output
660514815

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
TypeError: 'NoneType' object is not iterable

Test 21

Group: 2, 3

Verdict:

input
5000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
4999000000000

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 22

Group: 2, 3

Verdict:

input
5000
5000 5000 5000 5000 5000 5000 ...

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
TypeError: 'NoneType' object is not iterable

Test 23

Group: 2, 3

Verdict:

input
5000
4999 4998 4997 4996 4995 4994 ...

correct output
576616581

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 24

Group: 2, 3

Verdict:

input
5000
3343 3711 2568 137 2621 3850 4...

correct output
671570

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 25

Group: 2, 3

Verdict:

input
5000
119 203 420 133 175 334 461 10...

correct output
85700253

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 26

Group: 2, 3

Verdict:

input
5000
8 6 2 1 4 5 7 3 4 2 1 10 3 6 6...

correct output
193210576015

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 27

Group: 2, 3

Verdict:

input
5000
1 2 1 2 2 1 2 2 1 1 1 2 1 2 2 ...

correct output
1576581428593

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 28

Group: 2, 3

Verdict:

input
5000
300 1937 2136 770 429 2388 197...

correct output
3584707

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 29

Group: 2, 3

Verdict:

input
5000
949 46 29 2237 2413 36 42 1162...

correct output
3210354

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 30

Group: 2, 3

Verdict:

input
5000
1557 1727 1787 360 1698 2423 1...

correct output
3177107

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 31

Group: 2, 3

Verdict:

input
5000
484 1991 2309 1326 1901 2426 8...

correct output
4863018

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 32

Group: 2, 3

Verdict:

input
5000
1833 459 1994 2050 272 31 708 ...

correct output
2876923

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 33

Group: 2, 3

Verdict:

input
4999
530 2248 1916 859 2394 1403 24...

correct output
5194452

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 34

Group: 3

Verdict:

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

correct output
199999000000000

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 35

Group: 3

Verdict:

input
200000
200000 200000 200000 200000 20...

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
TypeError: 'NoneType' object is not iterable

Test 36

Group: 3

Verdict:

input
200000
199999 199998 199997 199996 19...

correct output
819945000

user output
(empty)

Test 37

Group: 3

Verdict:

input
200000
9036 179861 197509 187949 9444...

correct output
59563

user output
(empty)

Test 38

Group: 3

Verdict:

input
200000
357 1516 141 399 860 1591 544 ...

correct output
247414000

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 39

Group: 3

Verdict:

input
200000
10 4 1 7 1 8 8 4 8 2 2 4 2 4 8...

correct output
7789595210075

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 40

Group: 3

Verdict:

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

correct output
62777824801872

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 88, in <module>
    jonot = luo_jonot(mastot, et\xe4isyys)
  File "input/code.py", line 73, in luo_jonot
    mastojenjonot += seuraavat_mastot(l\xe4heinen_masto, mastot, et\xe4isyys)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  File "input/code.py", line 67, in seuraavat_mastot
    edellisetmastot, mastotlista)
  [Previous line repeated 994 more times]
  File "input/code.py", line 60, in seuraavat_mastot
    if nyt_masto + kantama >= et\xe4isyys:
RecursionError: maximum recursion depth exceeded in comparison

Test 41

Group: 3

Verdict:

input
200000
9473 42975 69773 60909 9354 20...

correct output
76814

user output
(empty)

Test 42

Group: 3

Verdict:

input
200000
31087 18493 14158 65333 95850 ...

correct output
180614

user output
(empty)

Test 43

Group: 3

Verdict:

input
200000
66563 17340 2293 5101 35636 96...

correct output
56642

user output
(empty)

Test 44

Group: 3

Verdict:

input
200000
4005 35201 22254 56956 49098 7...

correct output
287201

user output
(empty)

Test 45

Group: 3

Verdict:

input
200000
99266 91407 53419 70750 93505 ...

correct output
54045

user output
(empty)

Test 46

Group: 3

Verdict:

input
199999
23098 95019 27998 22880 40713 ...

correct output
184595

user output
(empty)