Task: | Kolikot |
Sender: | e^(pi*i)=-1 |
Submission time: | 2016-10-09 14:33:05 +0300 |
Language: | Java |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.12 s | 1 | details |
#2 | WRONG ANSWER | 0.16 s | 1 | details |
#3 | WRONG ANSWER | 0.14 s | 1 | details |
#4 | WRONG ANSWER | 0.14 s | 1 | details |
#5 | WRONG ANSWER | 0.14 s | 1 | details |
#6 | WRONG ANSWER | 0.14 s | 2 | details |
#7 | WRONG ANSWER | 0.16 s | 2 | details |
#8 | WRONG ANSWER | 0.15 s | 2 | details |
#9 | WRONG ANSWER | 0.14 s | 2 | details |
#10 | WRONG ANSWER | 0.17 s | 2 | details |
#11 | WRONG ANSWER | 0.89 s | 3 | details |
#12 | WRONG ANSWER | 0.37 s | 3 | details |
#13 | WRONG ANSWER | 0.53 s | 3 | details |
#14 | WRONG ANSWER | 0.55 s | 3 | details |
#15 | TIME LIMIT EXCEEDED | -- | 3 | details |
#16 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
import java.util.Arrays; import java.util.Scanner; public class Main { static int[] coinValues; public static void main(String[] args) { Scanner inputTaker = new Scanner(System.in); int amountOfCoins = inputTaker.nextInt(); inputTaker.nextLine(); String coinsString = inputTaker.nextLine(); int[] coins = new int[amountOfCoins]; System.out.println(coinsString); /*Now the input is handled into an array*/ int arraysOrdinal = 0; int coinsValue = 0; int exponentOfTen = 0; for(int i = coinsString.length() - 1; i >= 0; i--) { //Or try-catch characterAtI = Integer.parseInt(coinsString.charAt(i); char characterAtI = coinsString.charAt(i); if(characterAtI == '1' || characterAtI == '2' || characterAtI == '3' || characterAtI == '4' || characterAtI == '5' || characterAtI == '6' || characterAtI == '7' || coinsString.charAt(i) == '8' || characterAtI == '9' || characterAtI == '0') { coinsValue += Integer.parseInt("" + characterAtI) * Math.pow(10, exponentOfTen); exponentOfTen++; } else { coins[arraysOrdinal] = coinsValue; coinsValue = 0; exponentOfTen = 0; arraysOrdinal++; } if(i == 0) { coins[arraysOrdinal] = coinsValue; } } System.out.println(Arrays.toString(coins)); Arrays.sort(coins); coinValues = coins; /*Now begins the actual calculation for the first unpresentable number*/ for(int i = 1; true; i++) { int coinFound = -1; /*coinFound is the coin that proves that i can be presented as a sum of some coins. If it remains as -1 after the second for-loop, no coin is found and the current i cannot be presented as a sum of coins.*/ for(int j = 1; j <= i; j++) { int index = Arrays.binarySearch(coins, j); if(index >= 0) { int firstIndex = firstIndexOf(j, index); coinFound = coins[firstIndex]; coins[firstIndex] = 0; break; } } if(coinFound != -1) { i += (coinFound - 1); } else { System.out.println(i); break; } } } public static int firstIndexOf(int numberSearched, int someIndex) { int firstIndex = someIndex; for(int i = someIndex - 1; true; i--) { try { if(coinValues[i] == numberSearched) firstIndex = i; else return firstIndex; } catch(Exception e) { return firstIndex; } } } }
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 5 3 1 4 5 1 3 2 2 3 |
correct output |
---|
30 |
user output |
---|
5 3 1 4 5 1 3 2 2 3 [3, 2, 2, 3, 1, 5, 4, 1, 3, 5] 30 |
Test 2
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 3 5 5 4 5 4 5 5 5 3 |
correct output |
---|
1 |
user output |
---|
3 5 5 4 5 4 5 5 5 3 [3, 5, 5, 5, 4, 5, 4, 5, 5, 3] 1 |
Test 3
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 10 9 2 8 7 10 7 1 5 2 |
correct output |
---|
62 |
user output |
---|
10 9 2 8 7 10 7 1 5 2 [2, 5, 1, 7, 10, 7, 8, 2, 9, 1... |
Test 4
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 7 4 6 3 9 7 4 4 7 7 |
correct output |
---|
1 |
user output |
---|
7 4 6 3 9 7 4 4 7 7 [7, 7, 4, 4, 7, 9, 3, 6, 4, 7] 1 |
Test 5
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 8 2 1 7 9 7 5 2 4 5 |
correct output |
---|
51 |
user output |
---|
8 2 1 7 9 7 5 2 4 5 [5, 4, 2, 5, 7, 9, 7, 1, 2, 8] 51 |
Test 6
Group: 2
Verdict: WRONG ANSWER
input |
---|
100 3 3 1 4 2 1 2 1 3 1 2 5 1 5 1 ... |
correct output |
---|
269 |
user output |
---|
3 3 1 4 2 1 2 1 3 1 2 5 1 5 1 ... |
Test 7
Group: 2
Verdict: WRONG ANSWER
input |
---|
100 3 3 2 3 4 5 4 4 4 4 2 2 4 4 4 ... |
correct output |
---|
1 |
user output |
---|
3 3 2 3 4 5 4 4 4 4 2 2 4 4 4 ... |
Test 8
Group: 2
Verdict: WRONG ANSWER
input |
---|
100 678 999 374 759 437 390 832 54... |
correct output |
---|
1 |
user output |
---|
678 999 374 759 437 390 832 54... |
Test 9
Group: 2
Verdict: WRONG ANSWER
input |
---|
100 862 537 633 807 666 248 237 5 ... |
correct output |
---|
30 |
user output |
---|
862 537 633 807 666 248 237 5 ... |
Test 10
Group: 2
Verdict: WRONG ANSWER
input |
---|
100 874 302 384 920 76 28 762 163 ... |
correct output |
---|
41765 |
user output |
---|
874 302 384 920 76 28 762 163 ... |
Test 11
Group: 3
Verdict: WRONG ANSWER
input |
---|
100000 4 2 5 3 2 3 5 2 2 2 3 4 3 3 2 ... |
correct output |
---|
299640 |
user output |
---|
4 2 5 3 2 3 5 2 2 2 3 4 3 3 2 ... |
Test 12
Group: 3
Verdict: WRONG ANSWER
input |
---|
100000 2 5 5 5 5 2 4 4 3 2 3 2 5 5 3 ... |
correct output |
---|
1 |
user output |
---|
2 5 5 5 5 2 4 4 3 2 3 2 5 5 3 ... |
Test 13
Group: 3
Verdict: WRONG ANSWER
input |
---|
100000 98146842 766872135 84108268 28... |
correct output |
---|
1 |
user output |
---|
98146842 766872135 84108268 28... |
Test 14
Group: 3
Verdict: WRONG ANSWER
input |
---|
100000 932032495 1 849176169 78948957... |
correct output |
---|
29970 |
user output |
---|
932032495 1 849176169 78948957... |
Test 15
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
100000 35894853 796619259 699878597 4... |
correct output |
---|
44965249639582 |
user output |
---|
(empty) |
Test 16
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
100000 930494676 960662779 904422858 ... |
correct output |
---|
800020001 |
user output |
---|
(empty) |