Submission details
Task:Apple Division
Sender:aalto26aw_011
Submission time:2026-09-02 17:15:11 +0300
Language:Python3 (PyPy3)
Status:READY
Result:
Test results
testverdicttime
#10.04 sdetails
#20.04 sdetails
#30.04 sdetails
#40.04 sdetails
#50.04 sdetails
#60.04 sdetails
#70.04 sdetails
#80.04 sdetails
#90.04 sdetails
#100.04 sdetails
#110.04 sdetails
#120.04 sdetails
#130.04 sdetails
#14ACCEPTED0.04 sdetails
#150.04 sdetails
#16ACCEPTED0.04 sdetails
#170.04 sdetails
#180.04 sdetails

Code

def apple_division():
    num_of_apples = input()
    num_of_apples = int(num_of_apples)

    apple_weights = input()
    apple_weights = apple_weights.split(" ")

    i = 0
    while i < num_of_apples:
        apple_weights[i] = int(apple_weights[i])
        i = i + 1

    apple_weights = sorted(apple_weights)

    left_group_weight = 0
    right_group_weight = 0

    li = len(apple_weights) - 2
    ri = len(apple_weights) - 1

    while li >= 0 and ri >= 0:
        right_group_weight = right_group_weight + apple_weights[ri]

        while left_group_weight < right_group_weight:
            left_group_weight = left_group_weight + apple_weights[li]
            li = li - 1

            if li < 0:
                break

        ri = li - 1


    difference = left_group_weight - right_group_weight

    if difference < 0:
        difference = difference * -1

    print(difference)

    return
    

if __name__ == "__main__":
    apple_division()



"""
Primer intento

while ri > li:
        right_group_weight = right_group_weight + apple_weights[ri]
        ri = ri - 1
        
        while left_group_weight < right_group_weight:
            left_group_weight = left_group_weight + apple_weights[li]
            li = li + 1
"""

Test details

Test 1

Verdict:

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

correct output
2

user output
228

Feedback: Incorrect character on line 1 col 2: expected "2", got "228"

Test 2

Verdict:

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

correct output
1

user output
270

Feedback: Incorrect character on line 1 col 1: expected "1", got "270"

Test 3

Verdict:

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

correct output
2

user output
22

Feedback: Incorrect character on line 1 col 2: expected "2", got "22"

Test 4

Verdict:

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

correct output
4

user output
61

Feedback: Incorrect character on line 1 col 1: expected "4", got "61"

Test 5

Verdict:

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

correct output
2

user output
192

Feedback: Incorrect character on line 1 col 1: expected "2", got "192"

Test 6

Verdict:

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

correct output
1

user output
28

Feedback: Incorrect character on line 1 col 1: expected "1", got "28"

Test 7

Verdict:

input
20
13048212 423374770 19874608 81...

correct output
8231

user output
14440239

Feedback: Incorrect character on line 1 col 1: expected "8231", got "14440239"

Test 8

Verdict:

input
20
314836307 815098885 922742346 ...

correct output
1188

user output
35969229

Feedback: Incorrect character on line 1 col 1: expected "1188", got "35969229"

Test 9

Verdict:

input
20
846261131 196958704 824235264 ...

correct output
11770

user output
3919515

Feedback: Incorrect character on line 1 col 1: expected "11770", got "3919515"

Test 10

Verdict:

input
20
92021619 792314463 937735495 8...

correct output
4453

user output
83640333

Feedback: Incorrect character on line 1 col 1: expected "4453", got "83640333"

Test 11

Verdict:

input
20
452747515 202201476 845758891 ...

correct output
4881

user output
25789533

Feedback: Incorrect character on line 1 col 1: expected "4881", got "25789533"

Test 12

Verdict:

input
20
934033764 747013925 113297529 ...

correct output
5482

user output
38924256

Feedback: Incorrect character on line 1 col 1: expected "5482", got "38924256"

Test 13

Verdict:

input
1
1000000000

correct output
1000000000

user output
0

Feedback: Incorrect character on line 1 col 1: expected "1000000000", got "0"

Test 14

Verdict: ACCEPTED

input
2
1 1

correct output
0

user output
0

Test 15

Verdict:

input
1
1

correct output
1

user output
0

Feedback: Incorrect character on line 1 col 1: expected "1", got "0"

Test 16

Verdict: ACCEPTED

input
5
934033764 2 7 4 1

correct output
934033750

user output
934033750

Test 17

Verdict:

input
20
934033764 747013925 113297529 ...

correct output
5483

user output
38924256

Feedback: Incorrect character on line 1 col 1: expected "5483", got "38924256"

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
0

Feedback: Incorrect character on line 1 col 1: expected "1", got "0"