CSES - Datatähti 2022 alku - Results
Submission details
Task:Merkkijono
Sender:JuhaniA
Submission time:2021-10-13 12:42:26 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#1ACCEPTED0.02 sdetails
#2ACCEPTED0.02 sdetails
#3ACCEPTED0.02 sdetails
#4ACCEPTED0.02 sdetails
#5ACCEPTED0.02 sdetails
#6ACCEPTED0.02 sdetails
#7ACCEPTED0.02 sdetails
#8ACCEPTED0.02 sdetails
#9ACCEPTED0.02 sdetails
#10ACCEPTED0.02 sdetails
#110.02 sdetails
#120.02 sdetails
#130.02 sdetails
#140.02 sdetails
#150.03 sdetails
#160.02 sdetails

Code

x = int(input())
aakkoset = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o",
            "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "å", "ä", "ö"]


parilliset = list(range(0,1000,2))
merkkijono = []
for a in range(x):
    if a == 0:
        merkkijono.append("a")
    else:
        for b in range(len(merkkijono)):
            merkkijono.insert(parilliset[b], aakkoset[a])
merkkijono_loppu = merkkijono
merkkijono_loppu.reverse()
merkkijono = merkkijono + merkkijono_loppu
merkkijono.remove("a")
print("".join(merkkijono))

Test details

Test 1

Verdict: ACCEPTED

input
1

correct output
a

user output
a

Test 2

Verdict: ACCEPTED

input
2

correct output
bab

user output
bab

Test 3

Verdict: ACCEPTED

input
3

correct output
cbcacbc

user output
cbcacbc

Test 4

Verdict: ACCEPTED

input
4

correct output
dcdbdcdadcdbdcd

user output
dcdbdcdadcdbdcd

Test 5

Verdict: ACCEPTED

input
5

correct output
edecedebedecedeaedecedebedeced...

user output
edecedebedecedeaedecedebedeced...

Test 6

Verdict: ACCEPTED

input
6

correct output
fefdfefcfefdfefbfefdfefcfefdfe...

user output
fefdfefcfefdfefbfefdfefcfefdfe...

Test 7

Verdict: ACCEPTED

input
7

correct output
gfgegfgdgfgegfgcgfgegfgdgfgegf...

user output
gfgegfgdgfgegfgcgfgegfgdgfgegf...

Test 8

Verdict: ACCEPTED

input
8

correct output
hghfhghehghfhghdhghfhghehghfhg...

user output
hghfhghehghfhghdhghfhghehghfhg...

Test 9

Verdict: ACCEPTED

input
9

correct output
ihigihifihigihieihigihifihigih...

user output
ihigihifihigihieihigihifihigih...

Test 10

Verdict: ACCEPTED

input
10

correct output
jijhjijgjijhjijfjijhjijgjijhji...

user output
jijhjijgjijhjijfjijhjijgjijhji...

Test 11

Verdict:

input
11

correct output
kjkikjkhkjkikjkgkjkikjkhkjkikj...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    merkkijono.insert(parilliset[b], aakkoset[a])
IndexError: list index out of range

Test 12

Verdict:

input
12

correct output
lkljlklilkljlklhlkljlklilkljlk...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    merkkijono.insert(parilliset[b], aakkoset[a])
IndexError: list index out of range

Test 13

Verdict:

input
13

correct output
mlmkmlmjmlmkmlmimlmkmlmjmlmkml...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    merkkijono.insert(parilliset[b], aakkoset[a])
IndexError: list index out of range

Test 14

Verdict:

input
14

correct output
nmnlnmnknmnlnmnjnmnlnmnknmnlnm...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    merkkijono.insert(parilliset[b], aakkoset[a])
IndexError: list index out of range

Test 15

Verdict:

input
15

correct output
onomonolonomonokonomonolonomon...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    merkkijono.insert(parilliset[b], aakkoset[a])
IndexError: list index out of range

Test 16

Verdict:

input
16

correct output
popnpopmpopnpoplpopnpopmpopnpo...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    merkkijono.insert(parilliset[b], aakkoset[a])
IndexError: list index out of range