Task: | Differences |
Sender: | Haapsaari |
Submission time: | 2019-05-25 11:28:37 +0300 |
Language: | Python3 |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.23 s | details |
Code
n = int(input()) a,b = list(map(lambda x: int(x), input().split(' '))), list(map(lambda x: int(x), input().split(' '))) a.sort() b.sort() print(abs(sum(a) - sum(b)))