CSES - Datatähti 2018 alku - Results
Submission details
Task:Fraktaali
Sender:Erhad
Submission time:2017-10-11 20:44:18 +0300
Language:Python3
Status:READY
Result:20
Feedback
groupverdictscore
#1ACCEPTED10
#2ACCEPTED10
#30
#40
#50
#60
#70
#80
#90
#100
Test results
testverdicttimegroup
#1ACCEPTED0.10 s1details
#2ACCEPTED0.11 s2details
#30.07 s3details
#40.07 s4details
#50.11 s5details
#60.06 s6details
#70.09 s7details
#80.08 s8details
#90.09 s9details
#100.08 s10details

Code

fractal=[]
fractal.append("#")
fractal.append("##\n#.")
fractal.append("####}\n#.#.\n##..\n#..#")
print(fractal[int(input())-1])

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
1

correct output
#

user output
#

Test 2

Group: 2

Verdict: ACCEPTED

input
2

correct output
##
#.

user output
##
#.

Test 3

Group: 3

Verdict:

input
3

correct output
####
#.#.
##..
#..#

user output
####}
#.#.
##..
#..#

Test 4

Group: 4

Verdict:

input
4

correct output
########
#.#.#.#.
##..##..
#..##..#
####....
...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    print(fractal[int(input())-1])
IndexError: list index out of range

Test 5

Group: 5

Verdict:

input
5

correct output
################
#.#.#.#.#.#.#.#.
##..##..##..##..
#..##..##..##..#
####....####....
...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    print(fractal[int(input())-1])
IndexError: list index out of range

Test 6

Group: 6

Verdict:

input
6

correct output
##############################...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    print(fractal[int(input())-1])
IndexError: list index out of range

Test 7

Group: 7

Verdict:

input
7

correct output
##############################...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    print(fractal[int(input())-1])
IndexError: list index out of range

Test 8

Group: 8

Verdict:

input
8

correct output
##############################...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    print(fractal[int(input())-1])
IndexError: list index out of range

Test 9

Group: 9

Verdict:

input
9

correct output
##############################...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    print(fractal[int(input())-1])
IndexError: list index out of range

Test 10

Group: 10

Verdict:

input
10

correct output
##############################...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 5, in <module>
    print(fractal[int(input())-1])
IndexError: list index out of range