| Task: | Fraktaali |
| Sender: | Minna Vuorinen |
| Submission time: | 2017-10-10 20:31:37 +0300 |
| Language: | Java |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| #4 | WRONG ANSWER | 0 |
| #5 | WRONG ANSWER | 0 |
| #6 | WRONG ANSWER | 0 |
| #7 | WRONG ANSWER | 0 |
| #8 | WRONG ANSWER | 0 |
| #9 | WRONG ANSWER | 0 |
| #10 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.16 s | 1 | details |
| #2 | WRONG ANSWER | 0.16 s | 2 | details |
| #3 | WRONG ANSWER | 0.14 s | 3 | details |
| #4 | WRONG ANSWER | 0.18 s | 4 | details |
| #5 | WRONG ANSWER | 0.17 s | 5 | details |
| #6 | WRONG ANSWER | 0.17 s | 6 | details |
| #7 | WRONG ANSWER | 0.20 s | 7 | details |
| #8 | WRONG ANSWER | 0.26 s | 8 | details |
| #9 | WRONG ANSWER | 0.40 s | 9 | details |
| #10 | WRONG ANSWER | 0.59 s | 10 | details |
Code
import java.util.Scanner;
public class fraktaali3 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("herro");
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: WRONG ANSWER
| input |
|---|
| 1 |
| correct output |
|---|
| # |
| user output |
|---|
| herro # |
Test 2
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 2 |
| correct output |
|---|
| ## #. |
| user output |
|---|
| herro ## #. |
Test 3
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 3 |
| correct output |
|---|
| #### #.#. ##.. #..# |
| user output |
|---|
| herro #### #.#. ##.. #..# |
Test 4
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 4 |
| correct output |
|---|
| ######## #.#.#.#. ##..##.. #..##..# ####.... ... |
| user output |
|---|
| herro ######## #.#.#.#. ##..##.. #..##..# ... |
Test 5
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 5 |
| correct output |
|---|
| ################ #.#.#.#.#.#.#.#. ##..##..##..##.. #..##..##..##..# ####....####.... ... |
| user output |
|---|
| herro ################ #.#.#.#.#.#.#.#. ##..##..##..##.. #..##..##..##..# ... |
Test 6
Group: 6
Verdict: WRONG ANSWER
| input |
|---|
| 6 |
| correct output |
|---|
| ##############################... |
| user output |
|---|
| herro ##############################... |
Test 7
Group: 7
Verdict: WRONG ANSWER
| input |
|---|
| 7 |
| correct output |
|---|
| ##############################... |
| user output |
|---|
| herro ##############################... |
Test 8
Group: 8
Verdict: WRONG ANSWER
| input |
|---|
| 8 |
| correct output |
|---|
| ##############################... |
| user output |
|---|
| herro ##############################... |
Test 9
Group: 9
Verdict: WRONG ANSWER
| input |
|---|
| 9 |
| correct output |
|---|
| ##############################... |
| user output |
|---|
| herro ##############################... |
Test 10
Group: 10
Verdict: WRONG ANSWER
| input |
|---|
| 10 |
| correct output |
|---|
| ##############################... |
| user output |
|---|
| herro ##############################... |
