Task: | Merkkijono |
Sender: | WalkStalker |
Submission time: | 2021-10-06 21:56:33 +0300 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.02 s | details |
#2 | WRONG ANSWER | 0.02 s | details |
#3 | WRONG ANSWER | 0.02 s | details |
#4 | WRONG ANSWER | 0.02 s | details |
#5 | WRONG ANSWER | 0.02 s | details |
#6 | WRONG ANSWER | 0.02 s | details |
#7 | WRONG ANSWER | 0.02 s | details |
#8 | WRONG ANSWER | 0.02 s | details |
#9 | WRONG ANSWER | 0.03 s | details |
#10 | WRONG ANSWER | 0.02 s | details |
#11 | WRONG ANSWER | 0.03 s | details |
#12 | WRONG ANSWER | 0.03 s | details |
#13 | WRONG ANSWER | 0.04 s | details |
#14 | WRONG ANSWER | 0.06 s | details |
#15 | WRONG ANSWER | 0.14 s | details |
#16 | WRONG ANSWER | 0.45 s | details |
Code
n = int(input()) def check(): alphabet = (['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']) if n == 0: return '' final = ['a'] for i in range(n): final.insert(0, alphabet[i]) p = 0 while p <= len(final) - 3: if final[p] != final[p + 2] and final[p] == alphabet[i]: final.insert(p + 2, alphabet[i]) p += 1 final.extend(list(reversed(final[:len(final) - 1:]))) new = str() for i in final: new += i return new print(check())
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
1 |
correct output |
---|
a |
user output |
---|
bab |
Test 2
Verdict: WRONG ANSWER
input |
---|
2 |
correct output |
---|
bab |
user output |
---|
cbcacbc |
Test 3
Verdict: WRONG ANSWER
input |
---|
3 |
correct output |
---|
cbcacbc |
user output |
---|
dcdbdcdadcdbdcd |
Test 4
Verdict: WRONG ANSWER
input |
---|
4 |
correct output |
---|
dcdbdcdadcdbdcd |
user output |
---|
edecedebedecedeaedecedebedeced... |
Test 5
Verdict: WRONG ANSWER
input |
---|
5 |
correct output |
---|
edecedebedecedeaedecedebedeced... |
user output |
---|
fefdfefcfefdfefbfefdfefcfefdfe... |
Test 6
Verdict: WRONG ANSWER
input |
---|
6 |
correct output |
---|
fefdfefcfefdfefbfefdfefcfefdfe... |
user output |
---|
gfgegfgdgfgegfgcgfgegfgdgfgegf... Truncated |
Test 7
Verdict: WRONG ANSWER
input |
---|
7 |
correct output |
---|
gfgegfgdgfgegfgcgfgegfgdgfgegf... |
user output |
---|
hghfhghehghfhghdhghfhghehghfhg... Truncated |
Test 8
Verdict: WRONG ANSWER
input |
---|
8 |
correct output |
---|
hghfhghehghfhghdhghfhghehghfhg... |
user output |
---|
ihigihifihigihieihigihifihigih... Truncated |
Test 9
Verdict: WRONG ANSWER
input |
---|
9 |
correct output |
---|
ihigihifihigihieihigihifihigih... |
user output |
---|
jijhjijgjijhjijfjijhjijgjijhji... Truncated |
Test 10
Verdict: WRONG ANSWER
input |
---|
10 |
correct output |
---|
jijhjijgjijhjijfjijhjijgjijhji... |
user output |
---|
kjkikjkhkjkikjkgkjkikjkhkjkikj... Truncated |
Test 11
Verdict: WRONG ANSWER
input |
---|
11 |
correct output |
---|
kjkikjkhkjkikjkgkjkikjkhkjkikj... |
user output |
---|
lkljlklilkljlklhlkljlklilkljlk... Truncated |
Test 12
Verdict: WRONG ANSWER
input |
---|
12 |
correct output |
---|
lkljlklilkljlklhlkljlklilkljlk... |
user output |
---|
mlmkmlmjmlmkmlmimlmkmlmjmlmkml... Truncated |
Test 13
Verdict: WRONG ANSWER
input |
---|
13 |
correct output |
---|
mlmkmlmjmlmkmlmimlmkmlmjmlmkml... |
user output |
---|
nmnlnmnknmnlnmnjnmnlnmnknmnlnm... Truncated |
Test 14
Verdict: WRONG ANSWER
input |
---|
14 |
correct output |
---|
nmnlnmnknmnlnmnjnmnlnmnknmnlnm... |
user output |
---|
onomonolonomonokonomonolonomon... Truncated |
Test 15
Verdict: WRONG ANSWER
input |
---|
15 |
correct output |
---|
onomonolonomonokonomonolonomon... |
user output |
---|
popnpopmpopnpoplpopnpopmpopnpo... Truncated |
Test 16
Verdict: WRONG ANSWER
input |
---|
16 |
correct output |
---|
popnpopmpopnpoplpopnpopmpopnpo... |
user output |
---|
qpqoqpqnqpqoqpqmqpqoqpqnqpqoqp... Truncated |