CSES - Datatähti 2018 alku - Results
Submission details
Task:Fraktaali
Sender:Nanohenry
Submission time:2017-10-04 19:02:55 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
#50
#60
#70
#80
#90
#100
Test results
testverdicttimegroup
#1--1details
#2--2details
#3--3details
#4--4details
#5--5details
#6--6details
#7--7details
#8--8details
#9--9details
#10--10details

Code

#include <iostream>

using namespace std;

int main() {
	int size;
	cin >> size;
	int s = 1;
	int amount = 0;
	for (int i = 1; i < size; i++) {
		s = s * 2;
		amount++;
	}
	bool table[s][s];
	for (int y = 0; y < s; y++) {
		for (int x = 0; x < s; x++) {
				table[x][y] = false;
		}
	}
	int i = 1;
	while (i < s) {

		for (int y = 0; y < i; y++) {
			for (int x = 0; x < i; x++) {
				table[i + x][y] = table[x][y];
			}
		}

		for (int y = 0; y < i; y++) {
			for (int x = 0; x < i; x++) {
				table[x][i + y] = table[x][y];
			}
		}

		for (int y = 0; y < i; y++) {
			for (int x = 0; x < i; x++) {
				table[i + x][i + y] = !table[x][y];
			}
		}

		i *= 2;
	}
	for (int x = 0; x < s; x++) {
		for (int y = 0; y < s; y++) {
			if (table[x][y]) {
				cout << '.';
			} else {
				cout << '#';
			}
		}
		cout << '\n';
	}
	while (1);
	return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
1

correct output
#

user output
(empty)

Test 2

Group: 2

Verdict:

input
2

correct output
##
#.

user output
(empty)

Test 3

Group: 3

Verdict:

input
3

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

user output
(empty)

Test 4

Group: 4

Verdict:

input
4

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

user output
(empty)

Test 5

Group: 5

Verdict:

input
5

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

user output
(empty)

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)