Task: | Fraktaali |
Sender: | juhajgamer |
Submission time: | 2017-10-14 02:27:25 +0300 |
Language: | C++ |
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.05 s | 2 | details |
#3 | ACCEPTED | 0.07 s | 3 | details |
#4 | ACCEPTED | 0.04 s | 4 | details |
#5 | ACCEPTED | 0.06 s | 5 | details |
#6 | ACCEPTED | 0.05 s | 6 | details |
#7 | ACCEPTED | 0.05 s | 7 | details |
#8 | ACCEPTED | 0.06 s | 8 | details |
#9 | ACCEPTED | 0.07 s | 9 | details |
#10 | ACCEPTED | 0.07 s | 10 | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:18:39: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int x = 0; x<sqr.size();x++) ^ input/code.cpp:21:43: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int y = 0; y<sqr.size();y++) ^ input/code.cpp:29:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int x = 0; x<sqr.size(); x++) ^ input/code.cpp:31:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int y = 0; y<sqr.size();y++) ^
Code
#include <iostream> #include <vector> using namespace std; int main() { int depth = 0; cin >> depth; vector<vector<bool>> sqr; sqr.resize(1,vector<bool>(1,1)); for(int i = 1; i<depth; i++) { vector<vector<bool>> sqrtmp; sqrtmp.resize(sqr.size()*2,vector<bool>(sqr.size()*2,1)); for(int j = 0; j<4;j++) { for(int x = 0; x<sqr.size();x++) { for(int y = 0; y<sqr.size();y++) { sqrtmp[x + (j<2?sqr.size()*j:sqr.size()*(j-2))][y+(j<2?0:sqr.size())] = j==3?(sqr[x][y]?false:true):sqr[x][y]; } } } sqr = sqrtmp; } for(int x = 0; x<sqr.size(); x++) { for(int y = 0; y<sqr.size();y++) { if(sqr[x][y]) cout << "#"; else cout << "."; } cout << "\n"; } }
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 |
---|
##############################... |