Task: | Fraktaali |
Sender: | Yytsi |
Submission time: | 2017-10-02 18:02:45 +0300 |
Language: | Python3 |
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.07 s | 1 | details |
#2 | ACCEPTED | 0.08 s | 2 | details |
#3 | ACCEPTED | 0.11 s | 3 | details |
#4 | ACCEPTED | 0.06 s | 4 | details |
#5 | ACCEPTED | 0.08 s | 5 | details |
#6 | ACCEPTED | 0.08 s | 6 | details |
#7 | ACCEPTED | 0.10 s | 7 | details |
#8 | ACCEPTED | 0.11 s | 8 | details |
#9 | ACCEPTED | 0.23 s | 9 | details |
#10 | ACCEPTED | 0.78 s | 10 | details |
Code
def reverseBlock(arr):return [not val for val in arr]from collections import Iterabledef flatten(items):"""Yield items from any nested iterable; see REF."""for x in items:if isinstance(x, Iterable) and not isinstance(x, (str, bytes)):yield from flatten(x)else:yield xdef F(n):if n == 1: return [True]elif n == 2: return [True, True, True, False]else:block = F(n - 1)grid = list(flatten([block, block, block, reverseBlock(block)]))#print(grid)blocks = []area = 4 ** (n - 1)subArea = area // 4side = int(area ** 0.5)for y in range(side):# Every row has 2 sides.# LLLL | PPPP# LLLL | PPPP# EEEE | IIII# EEEE | IIIIhalfWay = (side // 2)if y < halfWay:# Upper regionfor x in range(side):realX = x % halfWayif x < halfWay:# Upper leftblocks.append(grid[y * halfWay + x])else:# Upper rightblocks.append(grid[subArea + y * halfWay + realX])else:# Lower regionrealY = y % halfWayfor x in range(side):realX = x % halfWayif x < halfWay:# Lower leftblocks.append(grid[2 * subArea + realY * halfWay + x])else:# Lower rightblocks.append(grid[3 * subArea + realY * halfWay + realX])return blocksn = int(input())grid = F(n)area = 4 ** (n - 1)subArea = area // 4side = int(area ** 0.5)lines = ""for i in range(side):cutStart = i * sidecutEnd = cutStart + sideslice = grid[cutStart : cutEnd]print("".join([".#"[val] for val in slice]))
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 |
---|
##############################... |