Task: | Laivanupotus |
Sender: | |
Submission time: | 2015-11-06 19:21:37 +0200 |
Language: | Java |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 24 |
#2 | ACCEPTED | 49 |
#3 | ACCEPTED | 27 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.20 s | 1 | details |
#2 | ACCEPTED | 0.20 s | 1 | details |
#3 | ACCEPTED | 0.21 s | 1 | details |
#4 | ACCEPTED | 0.20 s | 1 | details |
#5 | ACCEPTED | 0.20 s | 1 | details |
#6 | ACCEPTED | 0.20 s | 2 | details |
#7 | ACCEPTED | 0.19 s | 2 | details |
#8 | ACCEPTED | 0.19 s | 2 | details |
#9 | ACCEPTED | 0.19 s | 2 | details |
#10 | ACCEPTED | 0.19 s | 2 | details |
#11 | ACCEPTED | 0.19 s | 3 | details |
#12 | ACCEPTED | 0.21 s | 3 | details |
#13 | ACCEPTED | 0.23 s | 3 | details |
#14 | ACCEPTED | 0.22 s | 3 | details |
#15 | ACCEPTED | 0.23 s | 3 | details |
Code
import java.util.*; public class laiva { public static void main(String[] args) { Scanner input = new Scanner(System.in); int n = input.nextInt(); input.close(); if (n < 4) { for (int y = 0; y < n; y++) { for (int x = 0; x < n; x++) { System.out.print("."); } System.out.println(""); } } else { String[] rivi = new String[4]; String[] alkurivi = new String[4]; alkurivi[0] = "...*"; alkurivi[1] = "..*."; alkurivi[2] = ".*.."; alkurivi[3] = "*..."; rivi[0] = "...*"; rivi[1] = "..*."; rivi[2] = ".*.."; rivi[3] = "*..."; for (int k = 0; k < 4; k++) { for (int i = 1; i < (n/4); i++) { rivi[k] = rivi[k] + alkurivi[k]; } if ((n%4) > 0) rivi[k] = rivi[k] + alkurivi[k].substring(0, (n%4)); } for (int y = 0; y < n; y++) { System.out.println(rivi[(y%4)]); } } } }
Test details
Test 1
Group: 1
Verdict: ACCEPTED
input |
---|
4 |
correct output |
---|
...* ..*. .*.. *... |
user output |
---|
...* ..*. .*.. *... |
Test 2
Group: 1
Verdict: ACCEPTED
input |
---|
5 |
correct output |
---|
...*. ..*.. .*... *...* ...*. |
user output |
---|
...*. ..*.. .*... *...* ...*. |
Test 3
Group: 1
Verdict: ACCEPTED
input |
---|
6 |
correct output |
---|
...*.. ..*... .*...* *...*. ...*.. ... |
user output |
---|
...*.. ..*... .*...* *...*. ...*.. ... |
Test 4
Group: 1
Verdict: ACCEPTED
input |
---|
7 |
correct output |
---|
...*... ..*...* .*...*. *...*.. ...*... ... |
user output |
---|
...*... ..*...* .*...*. *...*.. ...*... ... |
Test 5
Group: 1
Verdict: ACCEPTED
input |
---|
8 |
correct output |
---|
...*...* ..*...*. .*...*.. *...*... ...*...* ... |
user output |
---|
...*...* ..*...*. .*...*.. *...*... ...*...* ... |
Test 6
Group: 2
Verdict: ACCEPTED
input |
---|
12 |
correct output |
---|
...*...*...* ..*...*...*. .*...*...*.. *...*...*... ...*...*...* ... |
user output |
---|
...*...*...* ..*...*...*. .*...*...*.. *...*...*... ...*...*...* ... |
Test 7
Group: 2
Verdict: ACCEPTED
input |
---|
25 |
correct output |
---|
...*...*...*...*...*...*. ..*...*...*...*...*...*.. .*...*...*...*...*...*... *...*...*...*...*...*...* ...*...*...*...*...*...*. ... |
user output |
---|
...*...*...*...*...*...*. ..*...*...*...*...*...*.. .*...*...*...*...*...*... *...*...*...*...*...*...* ...*...*...*...*...*...*. ... |
Test 8
Group: 2
Verdict: ACCEPTED
input |
---|
40 |
correct output |
---|
...*...*...*...*...*...*...*..... |
user output |
---|
...*...*...*...*...*...*...*..... |
Test 9
Group: 2
Verdict: ACCEPTED
input |
---|
74 |
correct output |
---|
...*...*...*...*...*...*...*..... |
user output |
---|
...*...*...*...*...*...*...*..... |
Test 10
Group: 2
Verdict: ACCEPTED
input |
---|
82 |
correct output |
---|
...*...*...*...*...*...*...*..... |
user output |
---|
...*...*...*...*...*...*...*..... |
Test 11
Group: 3
Verdict: ACCEPTED
input |
---|
110 |
correct output |
---|
...*...*...*...*...*...*...*..... |
user output |
---|
...*...*...*...*...*...*...*..... |
Test 12
Group: 3
Verdict: ACCEPTED
input |
---|
320 |
correct output |
---|
...*...*...*...*...*...*...*..... |
user output |
---|
...*...*...*...*...*...*...*..... |
Test 13
Group: 3
Verdict: ACCEPTED
input |
---|
545 |
correct output |
---|
...*...*...*...*...*...*...*..... |
user output |
---|
...*...*...*...*...*...*...*..... |
Test 14
Group: 3
Verdict: ACCEPTED
input |
---|
822 |
correct output |
---|
...*...*...*...*...*...*...*..... |
user output |
---|
...*...*...*...*...*...*...*..... |
Test 15
Group: 3
Verdict: ACCEPTED
input |
---|
971 |
correct output |
---|
...*...*...*...*...*...*...*..... |
user output |
---|
...*...*...*...*...*...*...*..... |