Task: | Aita |
Sender: | |
Submission time: | 2015-07-19 01:43:09 +0300 |
Language: | Java |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
#3 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.22 s | 1 | details |
#2 | RUNTIME ERROR | 0.21 s | 1 | details |
#3 | RUNTIME ERROR | 0.23 s | 1 | details |
#4 | RUNTIME ERROR | 0.21 s | 1 | details |
#5 | RUNTIME ERROR | 0.21 s | 1 | details |
#6 | RUNTIME ERROR | 0.21 s | 2 | details |
#7 | RUNTIME ERROR | 0.23 s | 2 | details |
#8 | RUNTIME ERROR | 0.22 s | 2 | details |
#9 | RUNTIME ERROR | 0.23 s | 2 | details |
#10 | RUNTIME ERROR | 0.21 s | 2 | details |
#11 | RUNTIME ERROR | 0.21 s | 3 | details |
#12 | RUNTIME ERROR | 0.20 s | 3 | details |
#13 | RUNTIME ERROR | 0.22 s | 3 | details |
#14 | RUNTIME ERROR | 0.22 s | 3 | details |
#15 | RUNTIME ERROR | 0.19 s | 3 | details |
Code
package putka1.aita; import java.util.Comparator; import java.util.HashSet; import java.util.Scanner; import java.util.TreeSet; /** * * @author Adreno */ public class Putka1Aita { public static int n; public static int k; public static StringBuilder j; public static void main(String[] args) { Scanner input = new Scanner(System.in); n = input.nextInt(); k = input.nextInt(); // j = new StringBuilder(""); // HashSet<Integer> keskiVasen = new HashSet<>(); // HashSet<Integer> keskiOikea = new HashSet<>(); // int v = (n/2) + 1 - (k+1) / 2; // int o = v + k; // double middlePoint = 1.00 * n / 2 + 1; // //System.out.println("midd" + middlePoint); // for (int i=v+1; i<middlePoint; i++) { // keskiVasen.add(i); // //System.out.println("Lisätään keskivasempaan " + i); // } // int ekaOikeal = n/2 + 1; // if (n % 2 != 0) ekaOikeal++; // for (int i=ekaOikeal; i<o; i++) { // keskiOikea.add(i); // //System.out.println("Lisätään keskioikeaan " + i); // } // //System.out.println("v=" + v + ", o=" + o); // // int count = 0; // boolean oikealtaVasemmalle = true; // int viimesin = o; // jotta ensimmäinen siirto ois v // while (true) { // if (oikealtaVasemmalle) { // if (keskiVasen.remove(viimesin-k)) { // j.append((viimesin-k) + " "); // viimesin = viimesin-k; // } else { // if (v < 1) break; // j.append(v + " "); // viimesin = v; // v--; // } // oikealtaVasemmalle = false; // } else { // if (keskiOikea.remove(viimesin+k)) { // j.append((viimesin+k) + " "); // viimesin = viimesin+k; // } // else { // if (o > n) break; // j.append(o + " "); // viimesin = o; // o++; // } // oikealtaVasemmalle = true; // } // //System.out.println("SB: " + j); // count++; // } // // if (n % 2 != 0 && (viimesin - (n/2 + 1) >= k)) { // j.append(n/2 + 1); // count++; // } // // if (count == n) System.out.println(j); // else { int v = n - k; int o = n; j = new StringBuilder(); int count = 0; boolean oikealtaVasemmalle = true; while (true) { if (oikealtaVasemmalle) { if (v < 1) break; j.append(v + " "); v--; oikealtaVasemmalle = false; } else { j.append(o + " "); o--; oikealtaVasemmalle = true; } count++; } if (count == n) System.out.println(j); else System.out.println("QAQ"); // } } } // public static void main(String[] args) { // Scanner input = new Scanner(System.in); // int n = input.nextInt(); // int k = input.nextInt(); // StringBuilder j = new StringBuilder(""); // int alottaja = k; // int nykyinen = k; // int count = 0; // while (alottaja < 1+k) { // while (nykyinen <= n) { // j.append(nykyinen + " "); // nykyinen += k; // count++; // } // alottaja++; // nykyinen = alottaja; // } // alottaja = k; // while (alottaja > 1) { // alottaja--; // nykyinen = alottaja; // while (nykyinen <= n) { // j.append(nykyinen + " "); // nykyinen += k; // count++; // } // } // if (count < n) System.out.println("QAQ"); // else System.out.println(j); // }
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
input |
---|
2 2 |
correct output |
---|
QAQ |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 2
Group: 1
Verdict: RUNTIME ERROR
input |
---|
3 2 |
correct output |
---|
QAQ |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 3
Group: 1
Verdict: RUNTIME ERROR
input |
---|
4 2 |
correct output |
---|
3 1 4 2 |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 4
Group: 1
Verdict: RUNTIME ERROR
input |
---|
7 4 |
correct output |
---|
QAQ |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 5
Group: 1
Verdict: RUNTIME ERROR
input |
---|
8 4 |
correct output |
---|
5 1 6 2 7 3 8 4 |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 6
Group: 2
Verdict: RUNTIME ERROR
input |
---|
80476 2 |
correct output |
---|
40239 1 40240 2 40241 3 40242 ... |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 7
Group: 2
Verdict: RUNTIME ERROR
input |
---|
68652 2 |
correct output |
---|
34327 1 34328 2 34329 3 34330 ... |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 8
Group: 2
Verdict: RUNTIME ERROR
input |
---|
62735 2 |
correct output |
---|
31368 1 31369 2 31370 3 31371 ... |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 9
Group: 2
Verdict: RUNTIME ERROR
input |
---|
71954 2 |
correct output |
---|
35978 1 35979 2 35980 3 35981 ... |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 10
Group: 2
Verdict: RUNTIME ERROR
input |
---|
4 2 |
correct output |
---|
3 1 4 2 |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 11
Group: 3
Verdict: RUNTIME ERROR
input |
---|
89814 3 |
correct output |
---|
44908 1 44909 2 44910 3 44911 ... |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 12
Group: 3
Verdict: RUNTIME ERROR
input |
---|
91140 5 |
correct output |
---|
45571 1 45572 2 45573 3 45574 ... |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 13
Group: 3
Verdict: RUNTIME ERROR
input |
---|
66703 16675 |
correct output |
---|
33352 1 33353 2 33354 3 33355 ... |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 14
Group: 3
Verdict: RUNTIME ERROR
input |
---|
66666 33333 |
correct output |
---|
33334 1 33335 2 33336 3 33337 ... |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita
Test 15
Group: 3
Verdict: RUNTIME ERROR
input |
---|
66666 33334 |
correct output |
---|
QAQ |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class Putka1Aita