CSES - Datatähti 2018 alku - Results
Submission details
Task:Fraktaali
Sender:muhk3l1
Submission time:2017-10-13 23:11:22 +0300
Language:Python2
Status:READY
Result:50
Feedback
groupverdictscore
#1ACCEPTED10
#2ACCEPTED10
#3ACCEPTED10
#4ACCEPTED10
#5ACCEPTED10
#60
#70
#80
#90
#100
Test results
testverdicttimegroup
#1ACCEPTED0.07 s1details
#2ACCEPTED0.07 s2details
#3ACCEPTED0.06 s3details
#4ACCEPTED0.05 s4details
#5ACCEPTED0.06 s5details
#60.06 s6details
#70.07 s7details
#80.07 s8details
#90.07 s9details
#100.06 s10details

Code

a = "########"
b = "#.#.#.#."
c = "##..##.."
d = "#..##..#"
e = "####...."
f = "#.#..#.#"
g = "##....##"
h = "#..#.##."



Fraktaali = raw_input("")
if Fraktaali == "4":
    print "########"
    print "#.#.#.#."
    print "##..##.."
    print "#..##..#"
    print "####...."
    print "#.#..#.#"
    print "##....##"
    print "#..#.##."

elif Fraktaali == "1":
    print "#"

elif Fraktaali == "2":
    print "##"
    print "#."

elif Fraktaali == "3":
   print "####"  
   print "#.#."
   print "##.."
   print "#..#"
elif Fraktaali == "5":
    print 2*a
    print 2*b
    print 2*c
    print 2*d
    print 2*e
    print 2*f
    print 2*g
    print 2*h
    print a + "........"
    print b + ".#.#.#.#"
    print c + "..##..##"
    print d + ".##..##."
    print e + "....####"
    print f + ".#.##.#."
    print g + "..####.."
    print h + ".##.#..#"
    

 

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

input
3

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

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

Test 4

Group: 4

Verdict: ACCEPTED

input
4

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

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

Test 5

Group: 5

Verdict: ACCEPTED

input
5

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

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

Test 6

Group: 6

Verdict:

input
6

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

user output
(empty)

Test 7

Group: 7

Verdict:

input
7

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

user output
(empty)

Test 8

Group: 8

Verdict:

input
8

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

user output
(empty)

Test 9

Group: 9

Verdict:

input
9

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

user output
(empty)

Test 10

Group: 10

Verdict:

input
10

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

user output
(empty)