Task: | Jakkara |
Sender: | |
Submission time: | 2015-07-17 17:23:13 +0300 |
Language: | Java |
Status: | READY |
Result: | 75 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 21 |
#2 | WRONG ANSWER | 0 |
#3 | ACCEPTED | 54 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.21 s | 1 | details |
#2 | ACCEPTED | 0.21 s | 1 | details |
#3 | ACCEPTED | 0.22 s | 1 | details |
#4 | ACCEPTED | 0.24 s | 1 | details |
#5 | ACCEPTED | 0.22 s | 1 | details |
#6 | ACCEPTED | 0.24 s | 2 | details |
#7 | ACCEPTED | 0.23 s | 2 | details |
#8 | WRONG ANSWER | 0.23 s | 2 | details |
#9 | ACCEPTED | 0.23 s | 2 | details |
#10 | ACCEPTED | 0.22 s | 2 | details |
#11 | ACCEPTED | 0.23 s | 3 | details |
#12 | ACCEPTED | 0.22 s | 3 | details |
#13 | ACCEPTED | 0.23 s | 3 | details |
#14 | ACCEPTED | 0.23 s | 3 | details |
#15 | ACCEPTED | 0.22 s | 3 | details |
Code
import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Scanner; public class Jakkara { public static void main(String[] args) { Scanner input = new Scanner(System.in); List<Integer> luvut = new ArrayList<Integer>(); List<Integer> jalat = new ArrayList<Integer>(); luvut.add(input.nextInt()); luvut.add(input.nextInt()); luvut.add(input.nextInt()); luvut.add(input.nextInt()); for(int luku : luvut) { if(!jalat.contains(luku)) jalat.add(luku); } Collections.sort(jalat); if(jalat.size() == 1) { System.out.print(0); }else if(jalat.size() == 2) { System.out.print((jalat.get(1) - jalat.get(0))); } else if(jalat.size() == 3) { int a = (jalat.get(2) - jalat.get(1)) + (jalat.get(2) - jalat.get(0)); int b = (jalat.get(2) - jalat.get(1)) + (jalat.get(1) - jalat.get(0)); int c = (jalat.get(2) - jalat.get(0)) + (jalat.get(1) - jalat.get(0)); List<Integer> tulos = new ArrayList<Integer>(); tulos.add(a); tulos.add(b); tulos.add(c); Collections.sort(tulos); System.out.print(tulos.get(0)); } else if(jalat.size() == 4) { int a = (jalat.get(3) - jalat.get(2)) + (jalat.get(3) - jalat.get(1)) + (jalat.get(3) - jalat.get(0)); int b = (jalat.get(3) - jalat.get(2)) + (jalat.get(2) - jalat.get(1)) + (jalat.get(2) - jalat.get(0)); int c = (jalat.get(3) - jalat.get(1)) + (jalat.get(2) - jalat.get(1)) + (jalat.get(1) - jalat.get(0)); int d = (jalat.get(3) - jalat.get(0)) + (jalat.get(2) - jalat.get(0)) + (jalat.get(1) - jalat.get(0)); List<Integer> tulos = new ArrayList<Integer>(); tulos.add(a); tulos.add(b); tulos.add(c); tulos.add(d); Collections.sort(tulos); System.out.print(tulos.get(0)); } } }
Test details
Test 1
Group: 1
Verdict: ACCEPTED
input |
---|
2 4 2 1 |
correct output |
---|
3 |
user output |
---|
3 |
Test 2
Group: 1
Verdict: ACCEPTED
input |
---|
4 4 5 1 |
correct output |
---|
4 |
user output |
---|
4 |
Test 3
Group: 1
Verdict: ACCEPTED
input |
---|
1 3 3 3 |
correct output |
---|
2 |
user output |
---|
2 |
Test 4
Group: 1
Verdict: ACCEPTED
input |
---|
4 5 2 1 |
correct output |
---|
6 |
user output |
---|
6 |
Test 5
Group: 1
Verdict: ACCEPTED
input |
---|
1 2 3 4 |
correct output |
---|
4 |
user output |
---|
4 |
Test 6
Group: 2
Verdict: ACCEPTED
input |
---|
755 181 899 550 |
correct output |
---|
923 |
user output |
---|
923 |
Test 7
Group: 2
Verdict: ACCEPTED
input |
---|
415 158 928 660 |
correct output |
---|
1015 |
user output |
---|
1015 |
Test 8
Group: 2
Verdict: WRONG ANSWER
input |
---|
8 786 277 786 |
correct output |
---|
1287 |
user output |
---|
778 |
Test 9
Group: 2
Verdict: ACCEPTED
input |
---|
740 537 892 1000 |
correct output |
---|
615 |
user output |
---|
615 |
Test 10
Group: 2
Verdict: ACCEPTED
input |
---|
805 794 799 591 |
correct output |
---|
219 |
user output |
---|
219 |
Test 11
Group: 3
Verdict: ACCEPTED
input |
---|
918046201 377309798 763092200 ... |
correct output |
---|
753184325 |
user output |
---|
753184325 |
Test 12
Group: 3
Verdict: ACCEPTED
input |
---|
185264934 19222757 522094385 9... |
correct output |
---|
595938743 |
user output |
---|
595938743 |
Test 13
Group: 3
Verdict: ACCEPTED
input |
---|
727047841 260674959 553589480 ... |
correct output |
---|
678802024 |
user output |
---|
678802024 |
Test 14
Group: 3
Verdict: ACCEPTED
input |
---|
769070856 877861912 488304785 ... |
correct output |
---|
614008750 |
user output |
---|
614008750 |
Test 15
Group: 3
Verdict: ACCEPTED
input |
---|
1 1 1 1000000000 |
correct output |
---|
999999999 |
user output |
---|
999999999 |