| Task: | Fraktaali |
| Sender: | Minna Vuorinen |
| Submission time: | 2017-10-10 20:32:34 +0300 |
| Language: | Java |
| 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.15 s | 1 | details |
| #2 | ACCEPTED | 0.15 s | 2 | details |
| #3 | ACCEPTED | 0.16 s | 3 | details |
| #4 | ACCEPTED | 0.17 s | 4 | details |
| #5 | ACCEPTED | 0.16 s | 5 | details |
| #6 | ACCEPTED | 0.17 s | 6 | details |
| #7 | ACCEPTED | 0.19 s | 7 | details |
| #8 | ACCEPTED | 0.24 s | 8 | details |
| #9 | ACCEPTED | 0.36 s | 9 | details |
| #10 | ACCEPTED | 0.56 s | 10 | details |
Code
import java.util.Scanner;
public class fraktaali3 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int f = Integer.parseInt(in.nextLine());
in.close();
int layers = f - 1;
int side = (int) Math.pow(2, layers);
Boolean[] fractal = new Boolean[side * side];
for (int i = 0; i < fractal.length; i++) {
fractal[i] = true;
}
for (int width = 2; width <= side; width *= 2) {
for (int subdivisiony = 0; subdivisiony < side / width; subdivisiony++) {
for (int subdivisionx = 0; subdivisionx < side / width; subdivisionx++) {
for (int y = width * subdivisiony + width / 2; y < width * (subdivisiony + 1); y++) {
for (int x = width * subdivisionx + width / 2; x < width * (subdivisionx + 1); x++) {
fractal[y * side + x] ^= true;
}
}
}
}
}
for (int y = 0; y < side; y++) {
for (int x = 0; x < side; x++) {
System.out.print(fractal[y * side + x] ? "#" : ".");
}
System.out.println("");
}
}
}
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 |
|---|
| ##############################... |
