CSES - Datatähti 2022 alku - Results
Submission details
Task:Merkkijono
Sender:qanpi
Submission time:2021-10-09 23:05:17 +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.02 sdetails
#120.02 sdetails
#130.02 sdetails
#140.02 sdetails
#150.02 sdetails
#160.02 sdetails

Code

# DISLCAIMER
# Not my proudest solution, I'm sure there's time I could cut here.
# But hey, if it works, it works.

n = int(input)-1 #adjusting for index
alphabet = [l for l in "abcdefghijklmnopqrstuvwxyz"]
string = ""

string += alphabet[n]
for i in range(n-1, 0, -1):
    string += alphabet[i] + alphabet[n]

half = string
string += alphabet[0] # the origin point
string += half[::-1]

print(string)

Test details

Test 1

Verdict:

input
1

correct output
a

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 2

Verdict:

input
2

correct output
bab

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 3

Verdict:

input
3

correct output
cbcacbc

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 4

Verdict:

input
4

correct output
dcdbdcdadcdbdcd

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 5

Verdict:

input
5

correct output
edecedebedecedeaedecedebedeced...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 6

Verdict:

input
6

correct output
fefdfefcfefdfefbfefdfefcfefdfe...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 7

Verdict:

input
7

correct output
gfgegfgdgfgegfgcgfgegfgdgfgegf...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 8

Verdict:

input
8

correct output
hghfhghehghfhghdhghfhghehghfhg...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 9

Verdict:

input
9

correct output
ihigihifihigihieihigihifihigih...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 10

Verdict:

input
10

correct output
jijhjijgjijhjijfjijhjijgjijhji...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 11

Verdict:

input
11

correct output
kjkikjkhkjkikjkgkjkikjkhkjkikj...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 12

Verdict:

input
12

correct output
lkljlklilkljlklhlkljlklilkljlk...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 13

Verdict:

input
13

correct output
mlmkmlmjmlmkmlmimlmkmlmjmlmkml...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 14

Verdict:

input
14

correct output
nmnlnmnknmnlnmnjnmnlnmnknmnlnm...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 15

Verdict:

input
15

correct output
onomonolonomonokonomonolonomon...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'

Test 16

Verdict:

input
16

correct output
popnpopmpopnpoplpopnpopmpopnpo...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    n = int(input)-1 #adjusting for index
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'