CSES - Aalto Competitive Programming 2024 - wk1 - Wed - Results
Submission details
Task:Apple Division
Sender:aalto2024a_007
Submission time:2024-09-04 17:30:27 +0300
Language:Java
Status:READY
Result:
Test results
testverdicttime
#10.13 sdetails
#20.13 sdetails
#30.13 sdetails
#40.13 sdetails
#50.13 sdetails
#60.13 sdetails
#70.13 sdetails
#80.13 sdetails
#90.13 sdetails
#100.13 sdetails
#110.13 sdetails
#120.13 sdetails
#130.13 sdetails
#140.14 sdetails
#150.14 sdetails
#160.14 sdetails
#170.13 sdetails
#180.13 sdetails

Code

import java.util.*;
import java.lang.Math;
public class testing{

    public static void main( String args[]){
        Scanner x = new Scanner(System.in);
        String a = x.nextLine();
        String b = x.nextLine();
        String[] arrS = b.split(" ");
        ArrayList<Integer> num = new ArrayList<Integer>();
        for(String h : arrS){
        //    System.out.println(Integer.parseInt(h));
            num.add(Integer.parseInt(h));
        }
        Collections.sort(num);
        //for(int i : num){
        //    System.out.println(i);
        //}
        int sum = 0;
        for(int g: num){
            sum += g;
        }
        int v = sum/2;
        int d = num.get(num.size());
        int o = num.get(num.size());
        int x1,x2;
        if(num.get(num.size()) >= v){
            int a1 = 0;
            for(int g : num){
                a1+=g;
            }
            System.out.println(num.get(num.size())-(a1-num.get(num.size()))); 
        }
        else{
            for(x1 = 0; x1<num.size(); x1++ ){
                if(Math.abs(d+num.get(x1)-(v))< Math.abs(d)){
                    d = d+num.get(x1)-(v);
                }
            }
            System.out.println(sum-d-(d));
        }
}
}

Test details

Test 1

Verdict:

input
10
603 324 573 493 659 521 654 70...

correct output
2

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 10 out of bounds for...

Test 2

Verdict:

input
10
952 775 292 702 859 719 65 943...

correct output
1

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 10 out of bounds for...

Test 3

Verdict:

input
10
141 156 14 487 250 230 741 602...

correct output
2

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 10 out of bounds for...

Test 4

Verdict:

input
10
963 359 731 826 599 931 40 86 ...

correct output
4

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 10 out of bounds for...

Test 5

Verdict:

input
10
238 224 861 461 558 860 318 93...

correct output
2

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 10 out of bounds for...

Test 6

Verdict:

input
10
193 848 70 53 864 886 374 31 2...

correct output
1

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 10 out of bounds for...

Test 7

Verdict:

input
20
13048212 423374770 19874608 81...

correct output
8231

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 20 out of bounds for...

Test 8

Verdict:

input
20
314836307 815098885 922742346 ...

correct output
1188

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 20 out of bounds for...

Test 9

Verdict:

input
20
846261131 196958704 824235264 ...

correct output
11770

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 20 out of bounds for...

Test 10

Verdict:

input
20
92021619 792314463 937735495 8...

correct output
4453

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 20 out of bounds for...

Test 11

Verdict:

input
20
452747515 202201476 845758891 ...

correct output
4881

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 20 out of bounds for...

Test 12

Verdict:

input
20
934033764 747013925 113297529 ...

correct output
5482

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 20 out of bounds for...

Test 13

Verdict:

input
1
1000000000

correct output
1000000000

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 1 out of bounds for...

Test 14

Verdict:

input
2
1 1

correct output
0

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 2 out of bounds for...

Test 15

Verdict:

input
1
1

correct output
1

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 1 out of bounds for...

Test 16

Verdict:

input
5
934033764 2 7 4 1

correct output
934033750

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 5 out of bounds for...

Test 17

Verdict:

input
20
934033764 747013925 113297529 ...

correct output
5483

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 20 out of bounds for...

Test 18

Verdict:

input
19
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
1

user output
(empty)

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 19 out of bounds for...