Submission #2249978


Source Code Expand

#include <bits/stdc++.h>

#define F first
#define S second
#define endl "\n"
#define ll long long
#define ii pair<int, int>

using namespace std;

int main()
{
#ifndef ONLINE_JUDGE
    //freopen("in.txt", "r", stdin);
    //freopen("out.txt", "w", stdout);
#endif

    ios_base::sync_with_stdio(0);
    cin.tie(0);

    int n;
    cin >> n;

    vector<ll> arr(n);

    for(int i = 0; i < n; i++)
        cin >> arr[i], arr[i] += (i > 0 ? arr[i - 1] : 0LL);

    for(int i = 0; i < n - 1; i++)
        arr[i] = labs(arr.back() - 2 * arr[i]);

    cout << *min_element(arr.begin(), arr.end() - 1);
}

Submission Info

Submission Time
Task C - Splitting Pile
User vjudge2
Language Bash (GNU bash v4.3.11)
Score 0
Code Size 598 Byte
Status RE
Exec Time 2 ms
Memory 504 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
RE × 2
RE × 16
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt
All 00_example_01.txt, 00_example_02.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt
Case Name Status Exec Time Memory
00_example_01.txt RE 2 ms 504 KB
00_example_02.txt RE 2 ms 504 KB
01.txt RE 2 ms 504 KB
02.txt RE 2 ms 504 KB
03.txt RE 2 ms 504 KB
04.txt RE 2 ms 504 KB
05.txt RE 2 ms 504 KB
06.txt RE 2 ms 504 KB
07.txt RE 2 ms 504 KB
08.txt RE 2 ms 504 KB
09.txt RE 2 ms 504 KB
10.txt RE 2 ms 504 KB
11.txt RE 2 ms 504 KB
12.txt RE 2 ms 504 KB
13.txt RE 2 ms 504 KB
14.txt RE 2 ms 504 KB