Submission #1986598


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
typedef int64_t ll;
typedef vector<ll> vll;
struct Solution {
    void solve(std::istream& in, std::ostream& out) {
        ll k, t;
        in >> k >> t;
        vll a(t);
        ll ma = 0;
        for (int i = 0; i < t; i++) {
            in >> a[i];
            ma = max(ma, a[i]);
        }
        out << max(0LL, ma - (k - ma) - 1LL) << '\n';
    }
};
void solve(std::istream& in, std::ostream& out) {
    out << std::setprecision(12);
    Solution solution;
    solution.solve(in, out);
}
#include <fstream>
#include <iostream>
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    istream& in = cin;
    ostream& out = cout;
    solve(in, out);
    return 0;
}

Submission Info

Submission Time
Task A - CF
User masakt
Language C++14 (GCC 5.4.1)
Score 0
Code Size 761 Byte
Status RE
Exec Time 99 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
RE × 4
RE × 12
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt
Case Name Status Exec Time Memory
0_000.txt RE 99 ms 256 KB
0_001.txt RE 99 ms 256 KB
0_002.txt RE 99 ms 256 KB
0_003.txt RE 97 ms 256 KB
1_004.txt RE 98 ms 256 KB
1_005.txt RE 99 ms 256 KB
1_006.txt RE 98 ms 256 KB
1_007.txt RE 98 ms 256 KB
1_008.txt RE 98 ms 256 KB
1_009.txt RE 97 ms 256 KB
1_010.txt RE 97 ms 256 KB
1_011.txt RE 98 ms 256 KB