Submission details
Task:Apple Division
Sender:aalto26aw_002
Submission time:2026-09-02 16:52:37 +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
#140.04 sdetails
#150.04 sdetails
#160.04 sdetails
#170.04 sdetails
#180.04 sdetails

Code

# sort_input

no_inputs = int(input())

input_str = list(map(int, input().split()))

sorted_list = sorted(input_str)

# algorithm

bunch_a = 0
bunch_b = 0

for i in range(no_inputs-1, -1, -1):
    print(sorted_list[i])
    if bunch_a > bunch_b:
        bunch_b += sorted_list[i]
    else:
        bunch_a += sorted_list[i]

print(abs(bunch_a - bunch_b))

Test details

Test 1

Verdict:

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

correct output
2

user output
718
659
654
603
573
...

Feedback: Output is longer than expected

Test 2

Verdict:

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

correct output
1

user output
952
943
859
775
719
...

Feedback: Output is longer than expected

Test 3

Verdict:

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

correct output
2

user output
741
717
602
487
250
...

Feedback: Output is longer than expected

Test 4

Verdict:

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

correct output
4

user output
963
931
826
777
760
...

Feedback: Output is longer than expected

Test 5

Verdict:

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

correct output
2

user output
861
860
558
461
402
...

Feedback: Output is longer than expected

Test 6

Verdict:

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

correct output
1

user output
886
864
848
700
374
...

Feedback: Output is longer than expected

Test 7

Verdict:

input
20
13048212 423374770 19874608 81...

correct output
8231

user output
966393898
952166494
907570920
887381168
860896267
...

Feedback: Output is longer than expected

Test 8

Verdict:

input
20
314836307 815098885 922742346 ...

correct output
1188

user output
932231564
922742346
921705085
815098885
757943472
...

Feedback: Output is longer than expected

Test 9

Verdict:

input
20
846261131 196958704 824235264 ...

correct output
11770

user output
978085759
882269655
846261131
842686077
824235264
...

Feedback: Output is longer than expected

Test 10

Verdict:

input
20
92021619 792314463 937735495 8...

correct output
4453

user output
937735495
860185204
853138862
817966179
807418830
...

Feedback: Output is longer than expected

Test 11

Verdict:

input
20
452747515 202201476 845758891 ...

correct output
4881

user output
954566440
913689714
849191653
847867437
845758891
...

Feedback: Output is longer than expected

Test 12

Verdict:

input
20
934033764 747013925 113297529 ...

correct output
5482

user output
971962557
934033764
908615271
903504371
896418401
...

Feedback: Output is longer than expected

Test 13

Verdict:

input
1
1000000000

correct output
1000000000

user output
1000000000
1000000000

Feedback: Output is longer than expected

Test 14

Verdict:

input
2
1 1

correct output
0

user output
1
1
0

Feedback: Output is longer than expected

Test 15

Verdict:

input
1
1

correct output
1

user output
1
1

Feedback: Output is longer than expected

Test 16

Verdict:

input
5
934033764 2 7 4 1

correct output
934033750

user output
934033764
7
4
2
1
...

Feedback: Output is longer than expected

Test 17

Verdict:

input
20
934033764 747013925 113297529 ...

correct output
5483

user output
971962557
934033764
908615271
903504371
896418401
...

Feedback: Output is longer than expected

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
1
1
1
1
1
...

Feedback: Output is longer than expected