Task: | Fraktaali |
Sender: | Nanohenry |
Submission time: | 2017-10-04 19:02:55 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | TIME LIMIT EXCEEDED | 0 |
#2 | TIME LIMIT EXCEEDED | 0 |
#3 | TIME LIMIT EXCEEDED | 0 |
#4 | TIME LIMIT EXCEEDED | 0 |
#5 | TIME LIMIT EXCEEDED | 0 |
#6 | TIME LIMIT EXCEEDED | 0 |
#7 | TIME LIMIT EXCEEDED | 0 |
#8 | TIME LIMIT EXCEEDED | 0 |
#9 | TIME LIMIT EXCEEDED | 0 |
#10 | TIME LIMIT EXCEEDED | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | TIME LIMIT EXCEEDED | -- | 1 | details |
#2 | TIME LIMIT EXCEEDED | -- | 2 | details |
#3 | TIME LIMIT EXCEEDED | -- | 3 | details |
#4 | TIME LIMIT EXCEEDED | -- | 4 | details |
#5 | TIME LIMIT EXCEEDED | -- | 5 | details |
#6 | TIME LIMIT EXCEEDED | -- | 6 | details |
#7 | TIME LIMIT EXCEEDED | -- | 7 | details |
#8 | TIME LIMIT EXCEEDED | -- | 8 | details |
#9 | TIME LIMIT EXCEEDED | -- | 9 | details |
#10 | TIME LIMIT EXCEEDED | -- | 10 | details |
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: TIME LIMIT EXCEEDED
input |
---|
1 |
correct output |
---|
# |
user output |
---|
(empty) |
Test 2
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
2 |
correct output |
---|
## #. |
user output |
---|
(empty) |
Test 3
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
3 |
correct output |
---|
#### #.#. ##.. #..# |
user output |
---|
(empty) |
Test 4
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
4 |
correct output |
---|
######## #.#.#.#. ##..##.. #..##..# ####.... ... |
user output |
---|
(empty) |
Test 5
Group: 5
Verdict: TIME LIMIT EXCEEDED
input |
---|
5 |
correct output |
---|
################ #.#.#.#.#.#.#.#. ##..##..##..##.. #..##..##..##..# ####....####.... ... |
user output |
---|
(empty) |
Test 6
Group: 6
Verdict: TIME LIMIT EXCEEDED
input |
---|
6 |
correct output |
---|
##############################... |
user output |
---|
(empty) |
Test 7
Group: 7
Verdict: TIME LIMIT EXCEEDED
input |
---|
7 |
correct output |
---|
##############################... |
user output |
---|
(empty) |
Test 8
Group: 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
8 |
correct output |
---|
##############################... |
user output |
---|
(empty) |
Test 9
Group: 9
Verdict: TIME LIMIT EXCEEDED
input |
---|
9 |
correct output |
---|
##############################... |
user output |
---|
(empty) |
Test 10
Group: 10
Verdict: TIME LIMIT EXCEEDED
input |
---|
10 |
correct output |
---|
##############################... |
user output |
---|
(empty) |