| Task: | Coins |
| Sender: | Name |
| Submission time: | 2016-09-06 18:47:46 +0300 |
| Language: | Java |
| Status: | READY |
| Result: | RUNTIME ERROR |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.09 s | details |
| #2 | ACCEPTED | 0.10 s | details |
| #3 | RUNTIME ERROR | 0.10 s | details |
| #4 | RUNTIME ERROR | 0.10 s | details |
| #5 | RUNTIME ERROR | 0.10 s | details |
| #6 | RUNTIME ERROR | 0.10 s | details |
| #7 | RUNTIME ERROR | 0.10 s | details |
| #8 | RUNTIME ERROR | 0.09 s | details |
| #9 | RUNTIME ERROR | 0.10 s | details |
| #10 | RUNTIME ERROR | 0.14 s | details |
| #11 | RUNTIME ERROR | 0.10 s | details |
| #12 | RUNTIME ERROR | 0.10 s | details |
| #13 | ACCEPTED | 0.09 s | details |
| #14 | RUNTIME ERROR | 0.10 s | details |
| #15 | RUNTIME ERROR | 0.10 s | details |
| #16 | RUNTIME ERROR | 0.10 s | details |
| #17 | RUNTIME ERROR | 0.10 s | details |
| #18 | RUNTIME ERROR | 0.10 s | details |
| #19 | RUNTIME ERROR | 0.10 s | details |
| #20 | RUNTIME ERROR | 0.10 s | details |
| #21 | RUNTIME ERROR | 0.09 s | details |
| #22 | RUNTIME ERROR | 0.10 s | details |
| #23 | RUNTIME ERROR | 0.10 s | details |
| #24 | RUNTIME ERROR | 0.10 s | details |
| #25 | RUNTIME ERROR | 0.10 s | details |
| #26 | RUNTIME ERROR | 0.10 s | details |
| #27 | RUNTIME ERROR | 0.10 s | details |
| #28 | RUNTIME ERROR | 0.10 s | details |
| #29 | WRONG ANSWER | 0.09 s | details |
| #30 | RUNTIME ERROR | 0.09 s | details |
| #31 | WRONG ANSWER | 0.10 s | details |
| #32 | RUNTIME ERROR | 0.10 s | details |
Code
import java.util.Arrays;
public class Coins {
public static void main(String[] args) {
IO io = new IO();
int n = io.nextInt();
int m = io.nextInt();
int p = io.nextInt();
int c[] = new int[n];
int d[] = new int[m];
int ut = 0;
int ct = 0;
for (int i = 0; i < n; i++) { c[i] = io.nextInt(); ut += c[i]; }
for (int i = 0; i < m; i++) { d[i] = io.nextInt(); ct += d[i]; }
Arrays.sort(c);
Arrays.sort(d);
int ui = 0;
for (int i = n - 1; i >= 0; i--) {
if (c[i] <= p) {
ui = i;
break;
}
}
int up = c[ui];
while (up < p) {
int val = Arrays.binarySearch(c, p - up);
if (val != -1) {
up += c[val];
break;
} else {
ui--;
if (ui < 0) {
ui = n - 1;
}
up += c[ui];
}
}
int cc = up - p;
int ci = 0;
for (int i = m - 1; i >= 0; i--) {
if (d[i] <= cc) {
ci = i;
break;
}
}
int cv = d[ci];
int used = 0;
while (cv < up) {
int val = Arrays.binarySearch(d, up - cv);
if (val > 0) {
cv += d[val];
break;
} else {
ci--;
if (ci < 0) {
ci = m - 1;
}
cv += d[ci];
used++;
}
if (used == m) {
cv -= d[ci];
break;
}
}
System.out.println(up + " " + (up - p - cv));
}
}
Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 2 1 3 5 2 3 |
| correct output |
|---|
| 7 1 |
| user output |
|---|
| 7 1 |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 3 3 10 6 7 6 1 1 1 |
| correct output |
|---|
| 13 0 |
| user output |
|---|
| 13 0 |
Test 3
Verdict: RUNTIME ERROR
| input |
|---|
| 15 7 1000 93 87 95 76 95 40 57 80 90 86 ... |
| correct output |
|---|
| 1004 4 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -16 at Coins.main(Coins.java:37)
Test 4
Verdict: RUNTIME ERROR
| input |
|---|
| 14 0 1000 84 77 81 91 78 29 96 47 87 69 ... |
| correct output |
|---|
| 1008 8 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -15 at Coins.main(Coins.java:37)
Test 5
Verdict: RUNTIME ERROR
| input |
|---|
| 13 51 1000 96 39 46 94 56 92 59 97 85 55 ... |
| correct output |
|---|
| 1010 10 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -14 at Coins.main(Coins.java:37)
Test 6
Verdict: RUNTIME ERROR
| input |
|---|
| 13 27 1000 94 91 97 90 71 75 95 80 72 71 ... |
| correct output |
|---|
| 1001 1 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -14 at Coins.main(Coins.java:37)
Test 7
Verdict: RUNTIME ERROR
| input |
|---|
| 13 2 1000 69 71 87 66 78 97 95 70 77 92 ... |
| correct output |
|---|
| 1002 1 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -14 at Coins.main(Coins.java:37)
Test 8
Verdict: RUNTIME ERROR
| input |
|---|
| 15 8 1000 62 90 65 35 64 59 80 91 87 80 ... |
| correct output |
|---|
| 1002 2 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -16 at Coins.main(Coins.java:37)
Test 9
Verdict: RUNTIME ERROR
| input |
|---|
| 17 95 1000 45 44 37 60 45 79 83 64 23 77 ... |
| correct output |
|---|
| 1009 2 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -18 at Coins.main(Coins.java:37)
Test 10
Verdict: RUNTIME ERROR
| input |
|---|
| 27 73 1000 69 46 79 15 73 56 39 52 33 48 ... |
| correct output |
|---|
| 1001 1 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -28 at Coins.main(Coins.java:37)
Test 11
Verdict: RUNTIME ERROR
| input |
|---|
| 5 43 336 71 44 84 81 99 46 78 55 48 81 62 97 98 80 96 ... |
| correct output |
|---|
| 379 1 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -6 at Coins.main(Coins.java:37)
Test 12
Verdict: RUNTIME ERROR
| input |
|---|
| 10 75 699 70 55 76 85 79 86 32 83 76 62 37 85 79 66 44 30 57 32 70 71 ... |
| correct output |
|---|
| 704 5 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -11 at Coins.main(Coins.java:37)
Test 13
Verdict: ACCEPTED
| input |
|---|
| 13 1 2 86 58 71 98 73 94 50 76 50 44 ... |
| correct output |
|---|
| 44 33 |
| user output |
|---|
| 44 33 |
Test 14
Verdict: RUNTIME ERROR
| input |
|---|
| 6 31 202 20 27 66 30 38 73 73 37 89 81 97 93 97 87 28 65 ... |
| correct output |
|---|
| 204 2 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -7 at Coins.main(Coins.java:37)
Test 15
Verdict: RUNTIME ERROR
| input |
|---|
| 12 9 884 68 96 99 50 60 59 100 94 88 70... |
| correct output |
|---|
| 942 2 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -13 at Coins.main(Coins.java:37)
Test 16
Verdict: RUNTIME ERROR
| input |
|---|
| 5 12 138 25 34 91 24 4 68 78 99 58 32 72 89 76 88 52 ... |
| correct output |
|---|
| 140 2 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -5 at Coins.main(Coins.java:37)
Test 17
Verdict: RUNTIME ERROR
| input |
|---|
| 11 1 199 91 94 75 89 89 61 88 84 96 80 ... |
| correct output |
|---|
| 297 3 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -12 at Coins.main(Coins.java:37)
Test 18
Verdict: RUNTIME ERROR
| input |
|---|
| 5 36 389 86 80 100 89 59 100 60 98 32 100 67 82 100 85 ... |
| correct output |
|---|
| 414 3 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -6 at Coins.main(Coins.java:37)
Test 19
Verdict: RUNTIME ERROR
| input |
|---|
| 10 69 210 11 15 45 51 3 14 12 8 42 22 99 56 46 79 43 68 47 71 68 77 ... |
| correct output |
|---|
| 211 1 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -11 at Coins.main(Coins.java:37)
Test 20
Verdict: RUNTIME ERROR
| input |
|---|
| 6 15 334 95 67 33 39 55 50 68 57 76 76 75 91 42 75 100 48... |
| correct output |
|---|
| 339 5 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -7 at Coins.main(Coins.java:37)
Test 21
Verdict: RUNTIME ERROR
| input |
|---|
| 5 28 360 86 89 82 62 97 57 94 27 57 75 87 63 88 75 43 ... |
| correct output |
|---|
| 416 2 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -6 at Coins.main(Coins.java:37)
Test 22
Verdict: RUNTIME ERROR
| input |
|---|
| 8 97 588 87 77 81 56 86 99 99 93 59 70 75 98 91 70 95 99 64 69 ... |
| correct output |
|---|
| 678 1 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -9 at Coins.main(Coins.java:37)
Test 23
Verdict: RUNTIME ERROR
| input |
|---|
| 8 33 526 65 43 98 29 77 73 58 97 52 25 25 19 22 5 34 42 19 75 5... |
| correct output |
|---|
| 540 2 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -9 at Coins.main(Coins.java:37)
Test 24
Verdict: RUNTIME ERROR
| input |
|---|
| 10 22 743 86 85 96 84 92 98 99 83 57 40 67 29 81 93 96 65 68 90 67 50 ... |
| correct output |
|---|
| 820 4 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -11 at Coins.main(Coins.java:37)
Test 25
Verdict: RUNTIME ERROR
| input |
|---|
| 4 12 249 94 95 93 98 91 72 92 61 56 92 63 95 45 83 ... |
| correct output |
|---|
| 380 2 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -5 at Coins.main(Coins.java:37)
Test 26
Verdict: RUNTIME ERROR
| input |
|---|
| 100 100 1000 49 20 56 23 51 37 51 42 55 49 ... |
| correct output |
|---|
| 1000 0 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -101 at Coins.main(Coins.java:37)
Test 27
Verdict: RUNTIME ERROR
| input |
|---|
| 100 0 1000 94 89 71 71 96 100 85 83 77 83... |
| correct output |
|---|
| 1000 0 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -101 at Coins.main(Coins.java:37)
Test 28
Verdict: RUNTIME ERROR
| input |
|---|
| 20 100 1000 88 99 97 98 78 88 90 60 71 90 ... |
| correct output |
|---|
| 1000 0 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -21 at Coins.main(Coins.java:37)
Test 29
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 1 99 90 80 98 96 77 59 86 51 69 ... |
| correct output |
|---|
| 30 0 |
| user output |
|---|
| 30 -29 |
Test 30
Verdict: RUNTIME ERROR
| input |
|---|
| 100 0 1 100 98 100 100 100 99 99 100 9... |
| correct output |
|---|
| 95 94 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0 at Coins.main(Coins.java:56)
Test 31
Verdict: WRONG ANSWER
| input |
|---|
| 1 100 1 33 99 95 100 100 100 97 99 100 99... |
| correct output |
|---|
| 33 32 |
| user output |
|---|
| 33 -63 |
Test 32
Verdict: RUNTIME ERROR
| input |
|---|
| 80 14 999 100 100 100 100 100 100 100 10... |
| correct output |
|---|
| 2300 0 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -81 at Coins.main(Coins.java:37)
