CSES - Datatähti 2017 alku - Results
Submission details
Task:Järjestys
Sender:inkeri
Submission time:2016-10-09 23:25:30 +0300
Language:Python2
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#20.12 s2details
#30.00 s3details

Code

def main():
    maara = int(input("")) + 1
    luvut = [int(a) for a in raw_input("").split(" ")]
    kaannot = [];
    append = kaannot.append
    while maara > 1:
        maara -= 1
        kohta = luvut.index(maara)
        if kohta == maara - 1:
            luvut.pop()
            continue

        luvut = luvut[:kohta:-1] + luvut[:kohta:]
        kaannot.append(str(kohta) + " ")
        kaannot.append(str(maara) + " ")
        print luvut

    print len(kaannot)
    print "".join(kaannot)

main()

Test details

Test 1

Group: 1

Verdict:

input
10
9 3 4 7 6 5 10 2 8 1

correct output
32
10 10 9 10 9 8 7 9 4 2 1 4 5 2...

user output
[1, 8, 2, 9, 3, 4, 7, 6, 5]
[5, 6, 7, 4, 3, 1, 8, 2]
[2, 5, 6, 7, 4, 3, 1]
[1, 3, 4, 2, 5, 6]
[2, 1, 3]
...

Test 2

Group: 2

Verdict:

input
1000
650 716 982 41 133 1000 876 92...

correct output
3984
207 207 206 207 128 127 126 12...

user output
[905, 829, 6, 679, 564, 946, 4...

Test 3

Group: 3

Verdict:

input
100000
94703 47808 62366 31885 7091 8...

correct output
399956
98676 98676 98675 98676 62994 ...

user output
(empty)