| Task: | Fraktaali |
| Sender: | Tanko |
| Submission time: | 2017-10-03 21:43:10 +0300 |
| Language: | Haskell |
| Status: | READY |
| Result: | 100 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 10 |
| #2 | ACCEPTED | 10 |
| #3 | ACCEPTED | 10 |
| #4 | ACCEPTED | 10 |
| #5 | ACCEPTED | 10 |
| #6 | ACCEPTED | 10 |
| #7 | ACCEPTED | 10 |
| #8 | ACCEPTED | 10 |
| #9 | ACCEPTED | 10 |
| #10 | ACCEPTED | 10 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.05 s | 1 | details |
| #2 | ACCEPTED | 0.03 s | 2 | details |
| #3 | ACCEPTED | 0.05 s | 3 | details |
| #4 | ACCEPTED | 0.06 s | 4 | details |
| #5 | ACCEPTED | 0.03 s | 5 | details |
| #6 | ACCEPTED | 0.05 s | 6 | details |
| #7 | ACCEPTED | 0.04 s | 7 | details |
| #8 | ACCEPTED | 0.05 s | 8 | details |
| #9 | ACCEPTED | 0.10 s | 9 | details |
| #10 | ACCEPTED | 0.23 s | 10 | details |
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 |
|---|
| ##############################... |
