Submission details
Task:Apple Division
Sender:aalto26aw_004
Submission time:2026-09-02 18:07:12 +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.07 sdetails
#80.07 sdetails
#90.07 sdetails
#100.07 sdetails
#110.07 sdetails
#120.07 sdetails
#13ACCEPTED0.04 sdetails
#140.04 sdetails
#15ACCEPTED0.04 sdetails
#160.04 sdetails
#170.07 sdetails
#18ACCEPTED0.07 sdetails

Code

n = int(input())
apples = input().split()
apples = [int(a) for a in apples]


def rec(i, diff):

    if i == len(apples) - 1:
        return abs(diff)

    return min(rec(i + 1, diff - apples[i]), rec(i + 1, diff))


print(rec(0, sum(apples)))

Test details

Test 1

Verdict:

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

correct output
2

user output
257

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

Test 2

Verdict:

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

correct output
1

user output
490

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

Test 3

Verdict:

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

correct output
2

user output
717

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

Test 4

Verdict:

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

correct output
4

user output
760

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

Test 5

Verdict:

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

correct output
2

user output
402

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

Test 6

Verdict:

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

correct output
1

user output
700

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

Test 7

Verdict:

input
20
13048212 423374770 19874608 81...

correct output
8231

user output
727737543

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

Test 8

Verdict:

input
20
314836307 815098885 922742346 ...

correct output
1188

user output
381545587

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

Test 9

Verdict:

input
20
846261131 196958704 824235264 ...

correct output
11770

user output
68287836

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

Test 10

Verdict:

input
20
92021619 792314463 937735495 8...

correct output
4453

user output
623993044

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

Test 11

Verdict:

input
20
452747515 202201476 845758891 ...

correct output
4881

user output
85805975

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

Test 12

Verdict:

input
20
934033764 747013925 113297529 ...

correct output
5482

user output
816479349

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

Test 13

Verdict: ACCEPTED

input
1
1000000000

correct output
1000000000

user output
1000000000

Test 14

Verdict:

input
2
1 1

correct output
0

user output
1

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

Test 15

Verdict: ACCEPTED

input
1
1

correct output
1

user output
1

Test 16

Verdict:

input
5
934033764 2 7 4 1

correct output
934033750

user output
1

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

Test 17

Verdict:

input
20
934033764 747013925 113297529 ...

correct output
5483

user output
816479348

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

Test 18

Verdict: ACCEPTED

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

correct output
1

user output
1