CSES - Datatähti 2018 alku - Results
Submission details
Task:Fraktaali
Sender:Tanko
Submission time:2017-10-03 21:43:10 +0300
Language:Haskell
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED10
#2ACCEPTED10
#3ACCEPTED10
#4ACCEPTED10
#5ACCEPTED10
#6ACCEPTED10
#7ACCEPTED10
#8ACCEPTED10
#9ACCEPTED10
#10ACCEPTED10
Test results
testverdicttimegroup
#1ACCEPTED0.05 s1details
#2ACCEPTED0.03 s2details
#3ACCEPTED0.05 s3details
#4ACCEPTED0.06 s4details
#5ACCEPTED0.03 s5details
#6ACCEPTED0.05 s6details
#7ACCEPTED0.04 s7details
#8ACCEPTED0.05 s8details
#9ACCEPTED0.10 s9details
#10ACCEPTED0.23 s10details

Compiler report

input/code.hs:6:11: Warning: Defined but not used: `i'

input/code.hs:18:1: Warning:
    Top-level binding with no type signature: draw :: Int -> IO ()

input/code.hs:25:1: Warning:
    Top-level binding with no type signature: main :: IO ()

Code

import Control.Monad

get :: Int -> Int -> Int -> Bool -> Bool
-- F_1 on tasolla 0
get 0 1 1 inverted = not inverted
get 0 x y i = error $ show x ++ "/" ++ show y
get level x y inverted = let
	half = 2^(level - 1) 
	fit n =
		if n > half then
			n - half
		else
			n
	in
		get (level - 1) (fit x) (fit y) $
			(if x > half && y > half then not else id) inverted

draw n = do
	let w = 2^n
	forM_ [1..w] $ \ x -> do
		forM_ [1..w] $ \ y -> do
			putChar $ if get n x y True then '.' else '#'
		putChar '\n'

main = do
	n <- readLn :: IO Int
	draw (n - 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: 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: ACCEPTED

input
6

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

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

Test 7

Group: 7

Verdict: ACCEPTED

input
7

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

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

Test 8

Group: 8

Verdict: ACCEPTED

input
8

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

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

Test 9

Group: 9

Verdict: ACCEPTED

input
9

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

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

Test 10

Group: 10

Verdict: ACCEPTED

input
10

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

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