CSES - Datatähti 2022 alku - Results
Submission details
Task:Merkkijono
Sender:MatvaZ
Submission time:2021-10-06 11:53:41 +0300
Language:CPython3
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED100
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
#11ACCEPTED0.02 sdetails
#12ACCEPTED0.02 sdetails
#13ACCEPTED0.02 sdetails
#14ACCEPTED0.03 sdetails
#15ACCEPTED0.02 sdetails
#16ACCEPTED0.03 sdetails

Code

n = int(input())
s = "bb"

if n >= 1:
    if n == 1:
        print("a")
    elif n > 1:
        x = "a".join(s)
        if n == 2:
            print(x)
        elif n > 2:
            x = "c".join(x)
            x = "c"+x+"c"
            if n == 3:
                print(x)
            elif n > 3:
                x = "d".join(x)
                x = "d"+x+"d"
                if n == 4:
                    print(x)
                elif n > 4:
                    x = "e".join(x)
                    x = "e"+x+"e"
                    if n == 5:
                        print(x)
                    elif n > 5:
                        x = "f".join(x)
                        x = "f"+x+"f"
                        if n == 6:
                            print(x)
                        elif n > 6:
                            x = "g".join(x)
                            x = "g"+x+"g"
                            if n == 7:
                                print(x)
                            elif n > 7:
                                x = "h".join(x)
                                x = "h"+x+"h"
                                if n == 8:
                                    print(x)
                                elif n > 8:
                                    x = "i".join(x)
                                    x = "i"+x+"i"
                                    if n == 9:
                                        print(x)
                                    elif n > 9:
                                        x = "j".join(x)
                                        x = "j"+x+"j"
                                        if n == 10:
                                            print(x)
                                        elif n > 10:
                                            x = "k".join(x)
                                            x = "k"+x+"k"
                                            if n == 11:
                                                print(x)
                                            elif n > 11:
                                                x = "l".join(x)
                                                x = "l"+x+"l"
                                                if n == 12:
                                                    print(x)
                                                elif n > 12:
                                                    x = "m".join(x)
                                                    x = "m"+x+"m"
                                                    if n == 13:
                                                        print(x)
                                                    elif n > 13:
                                                        x = "n".join(x)
                                                        x = "n"+x+"n"
                                                        if n == 14:
                                                            print(x)
                                                        elif n > 14:
                                                            x = "o".join(x)
                                                            x = "o"+x+"o"
                                                            if n == 15:
                                                                print(x)
                                                            elif n > 15:
                                                                x = "p".join(x)
                                                                x = "p"+x+"p"
                                                                if n == 16:
                                                                    print(x)

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: ACCEPTED

input
11

correct output
kjkikjkhkjkikjkgkjkikjkhkjkikj...

user output
kjkikjkhkjkikjkgkjkikjkhkjkikj...

Test 12

Verdict: ACCEPTED

input
12

correct output
lkljlklilkljlklhlkljlklilkljlk...

user output
lkljlklilkljlklhlkljlklilkljlk...

Test 13

Verdict: ACCEPTED

input
13

correct output
mlmkmlmjmlmkmlmimlmkmlmjmlmkml...

user output
mlmkmlmjmlmkmlmimlmkmlmjmlmkml...

Test 14

Verdict: ACCEPTED

input
14

correct output
nmnlnmnknmnlnmnjnmnlnmnknmnlnm...

user output
nmnlnmnknmnlnmnjnmnlnmnknmnlnm...

Test 15

Verdict: ACCEPTED

input
15

correct output
onomonolonomonokonomonolonomon...

user output
onomonolonomonokonomonolonomon...

Test 16

Verdict: ACCEPTED

input
16

correct output
popnpopmpopnpoplpopnpopmpopnpo...

user output
popnpopmpopnpoplpopnpopmpopnpo...