| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 159697 | silxikys | Tarifa (COCI16_tarifa) | C++14 | 2 ms | 504 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
    ios_base::sync_with_stdio(false); cin.tie(NULL);
    int x, n; cin >> x >> n;
    int res = 0;
    for (int i = 0; i < n; i++) {
        int p; cin >> p;
        res += x;
        res -= p;
    }
    res += x;
    cout << res << '\n';
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
