CSES - Datatähti 2022 alku - Results
Submission details
Task:Merkkijono
Sender:pingumies779
Submission time:2021-10-10 10:16:03 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
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.03 sdetails
#120.03 sdetails
#130.03 sdetails
#140.05 sdetails
#150.12 sdetails
#160.41 sdetails

Code

number = int(input())
string_list = ["a"]
x = 1
y = 0
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", "å", "ä", "ö"]
while x < number:
    y=0
    list_len = len(string_list)*2+1
    while y < list_len:
        string_list.insert(y, aakkoset[x])
        y += 2
    x +=1
print(string_list)

Test details

Test 1

Verdict:

input
1

correct output
a

user output
['a']

Test 2

Verdict:

input
2

correct output
bab

user output
['b', 'a', 'b']

Test 3

Verdict:

input
3

correct output
cbcacbc

user output
['c', 'b', 'c', 'a', 'c', 'b',...

Test 4

Verdict:

input
4

correct output
dcdbdcdadcdbdcd

user output
['d', 'c', 'd', 'b', 'd', 'c',...

Test 5

Verdict:

input
5

correct output
edecedebedecedeaedecedebedeced...

user output
['e', 'd', 'e', 'c', 'e', 'd',...

Test 6

Verdict:

input
6

correct output
fefdfefcfefdfefbfefdfefcfefdfe...

user output
['f', 'e', 'f', 'd', 'f', 'e',...

Test 7

Verdict:

input
7

correct output
gfgegfgdgfgegfgcgfgegfgdgfgegf...

user output
['g', 'f', 'g', 'e', 'g', 'f',...

Test 8

Verdict:

input
8

correct output
hghfhghehghfhghdhghfhghehghfhg...

user output
['h', 'g', 'h', 'f', 'h', 'g',...

Test 9

Verdict:

input
9

correct output
ihigihifihigihieihigihifihigih...

user output
['i', 'h', 'i', 'g', 'i', 'h',...

Test 10

Verdict:

input
10

correct output
jijhjijgjijhjijfjijhjijgjijhji...

user output
['j', 'i', 'j', 'h', 'j', 'i',...

Test 11

Verdict:

input
11

correct output
kjkikjkhkjkikjkgkjkikjkhkjkikj...

user output
['k', 'j', 'k', 'i', 'k', 'j',...

Test 12

Verdict:

input
12

correct output
lkljlklilkljlklhlkljlklilkljlk...

user output
['l', 'k', 'l', 'j', 'l', 'k',...

Test 13

Verdict:

input
13

correct output
mlmkmlmjmlmkmlmimlmkmlmjmlmkml...

user output
['m', 'l', 'm', 'k', 'm', 'l',...

Test 14

Verdict:

input
14

correct output
nmnlnmnknmnlnmnjnmnlnmnknmnlnm...

user output
['n', 'm', 'n', 'l', 'n', 'm',...

Test 15

Verdict:

input
15

correct output
onomonolonomonokonomonolonomon...

user output
['o', 'n', 'o', 'm', 'o', 'n',...

Test 16

Verdict:

input
16

correct output
popnpopmpopnpoplpopnpopmpopnpo...

user output
['p', 'o', 'p', 'n', 'p', 'o',...