CSES - Datatähti 2018 peili - Results
Submission details
Task:Fraktaali
Sender:symbols
Submission time:2017-10-02 18:27:38 +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.04 s2details
#3ACCEPTED0.05 s3details
#4ACCEPTED0.05 s4details
#5ACCEPTED0.04 s5details
#6ACCEPTED0.04 s6details
#7ACCEPTED0.05 s7details
#8ACCEPTED0.06 s8details
#9ACCEPTED0.06 s9details
#10ACCEPTED0.05 s10details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:24:13: warning: suggest parentheses around '-' inside '<<' [-Wparentheses]
  n = 1 << n - 1;
             ^
input/code.cpp:23:17: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%u", &n);
                 ^

Code

#include <stdio.h>

unsigned next2(unsigned n) {
	for (unsigned i = 1;; i *= 2) {
		if (i > n) {
			return i;
		}
	}
}

unsigned bit(unsigned x, unsigned y) {
	if (x == 0 && y == 0) {
		return 1;
	}
	unsigned n = next2(x > y ? x : y);
	unsigned k = n / 2;
	unsigned z = x >= k && y >= k;
	return z ^ bit(x &~ k, y &~ k);
}

int main() {
	unsigned n;
	scanf("%u", &n);
	n = 1 << n - 1;
	for (unsigned y = 0; y < n; ++y) {
		for (unsigned x = 0; x < n; ++x) {
			putchar(bit(x, y) ? '#' : '.');
		}
		putchar('\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
##############################...