Submission details
Task:Apple Division
Sender:aalto25a_005
Submission time:2025-09-15 02:48:12 +0300
Language:C++ (C++20)
Status:READY
Result:
Test results
testverdicttime
#10.00 sdetails
#20.00 sdetails
#30.00 sdetails
#40.00 sdetails
#50.00 sdetails
#6ACCEPTED0.00 sdetails
#70.00 sdetails
#80.00 sdetails
#90.00 sdetails
#100.00 sdetails
#110.00 sdetails
#120.00 sdetails
#13ACCEPTED0.01 sdetails
#14ACCEPTED0.00 sdetails
#15ACCEPTED0.00 sdetails
#16ACCEPTED0.00 sdetails
#170.00 sdetails
#18ACCEPTED0.00 sdetails

Code

#include <bits/stdc++.h>
using namespace std;
// clang-format off

template<typename A, typename B> ostream& operator<<(ostream &os, const pair<A, B> &p) { return os << '(' << p.first << ", " << p.second << ')'; }
template<typename T_container, typename T = typename enable_if<!is_same<T_container, string>::value, typename T_container::value_type>::type> ostream& operator<<(ostream &os, const T_container &v) { os << '{'; string sep; for (const T &x : v) os << sep << x, sep = ", "; return os << '}'; }
void dbg_out() { cerr << endl; }
template<typename Head, typename... Tail> void dbg_out(Head H, Tail... T) { cerr << ' ' << H; dbg_out(T...); }
template <typename T> istream &operator>>(istream &is, vector<T> &v) { T value; is >> value; v.push_back(value); return is; }
#define preamble ios::sync_with_stdio(0); cin.tie(0); dbg("INIT");
// clang-format on
#ifdef DO_DBG
#define dbg(...) cerr << "(" << #__VA_ARGS__ << "):", dbg_out(__VA_ARGS__)
#else
#define dbg(...)
#endif
typedef long long ll;
typedef unsigned long long ull;
typedef vector<ll> vi;
typedef pair<ll, ll> pi;
typedef vector<pair<ll, ll>> vpi;
#define F first
#define S second
#define PB push_back
#define MP make_pair

#define loop(n) for (ll i = 0; i < n; i++)
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()

int main() {
  preamble;
  ll n;
  cin >> n;
  vi p;
  loop(n) cin >> p;
  sort(rall(p));
  dbg(n, p);
  ll s1{}, s2{};
  for (auto a : p) {
    if (s1 < s2)
      s1 += a;
    else
      s2 += a;
  }
  cout << abs(s2 - s1);
}

Test details

Test 1

Verdict:

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

correct output
2

user output
62

Test 2

Verdict:

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

correct output
1

user output
171

Test 3

Verdict:

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

correct output
2

user output
10

Test 4

Verdict:

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

correct output
4

user output
102

Test 5

Verdict:

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

correct output
2

user output
92

Test 6

Verdict: ACCEPTED

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

correct output
1

user output
1

Test 7

Verdict:

input
20
13048212 423374770 19874608 81...

correct output
8231

user output
2075763

Test 8

Verdict:

input
20
314836307 815098885 922742346 ...

correct output
1188

user output
2187344

Test 9

Verdict:

input
20
846261131 196958704 824235264 ...

correct output
11770

user output
16518138

Test 10

Verdict:

input
20
92021619 792314463 937735495 8...

correct output
4453

user output
24058607

Test 11

Verdict:

input
20
452747515 202201476 845758891 ...

correct output
4881

user output
13437771

Test 12

Verdict:

input
20
934033764 747013925 113297529 ...

correct output
5482

user output
4761662

Test 13

Verdict: ACCEPTED

input
1
1000000000

correct output
1000000000

user output
1000000000

Test 14

Verdict: ACCEPTED

input
2
1 1

correct output
0

user output
0

Test 15

Verdict: ACCEPTED

input
1
1

correct output
1

user output
1

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
4761663

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