CSES - Datatähti 2018 alku - Results
Submission details
Task:Fraktaali
Sender:ArktinenKarpalo
Submission time:2017-10-04 14:24:41 +0300
Language:C++
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED10
#2ACCEPTED10
#3ACCEPTED10
#4ACCEPTED10
#5ACCEPTED10
#6ACCEPTED10
#7ACCEPTED10
#8ACCEPTED10
#9ACCEPTED10
#10ACCEPTED10
Test results
testverdicttimegroup
#1ACCEPTED0.04 s1details
#2ACCEPTED0.05 s2details
#3ACCEPTED0.04 s3details
#4ACCEPTED0.05 s4details
#5ACCEPTED0.04 s5details
#6ACCEPTED0.04 s6details
#7ACCEPTED0.04 s7details
#8ACCEPTED0.05 s8details
#9ACCEPTED0.06 s9details
#10ACCEPTED0.04 s10details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:11:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int j=0; j<fraktal.size(); j++) {
                               ^
input/code.cpp:18:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int l=nk; l<fraktal.size(); l++) {
                                ^
input/code.cpp:28:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i=0; i<fraktal.size(); i++) {
                              ^

Code

#include <bits/stdc++.h>

using namespace std;

int n, nk;
vector<string> fraktal = {"#"};

int main() {
	cin >> n;
	for(int i=0; i<n-1; i++) { // Im sorry for for loops for using far too many for loops
		for(int j=0; j<fraktal.size(); j++) {
			nk=fraktal.size();
			fraktal[j].append(fraktal[j]);
		}
		for(int k=0; k<nk; k++) {
			fraktal.push_back(fraktal[k]);
		}
		for(int l=nk; l<fraktal.size(); l++) {
			for(int j=nk; j<nk*2; j++) {
				if(fraktal[l][j]=='#') {
					fraktal[l][j]='.';
				} else {
					fraktal[l][j]='#';
				}
			}
		}
	}
	for(int i=0; i<fraktal.size(); i++) {
		cout << fraktal[i] << "\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
##############################...