# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
133170 |
2019-07-20T08:26:26 Z |
Vlatko |
Tarifa (COCI16_tarifa) |
C++14 |
|
2 ms |
376 KB |
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;
int main() {
ios::sync_with_stdio(false); cin.tie(0);
int x, n, p;
cin >> x >> n;
int cur = 0;
for (int i = 0; i < n; ++i) {
cur += x;
cin >> p;
cur -= p;
}
cur += x;
cout << cur << '\n';
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
3 |
Correct |
2 ms |
376 KB |
Output is correct |
4 |
Correct |
2 ms |
376 KB |
Output is correct |
5 |
Correct |
2 ms |
376 KB |
Output is correct |
6 |
Correct |
2 ms |
376 KB |
Output is correct |
7 |
Correct |
2 ms |
376 KB |
Output is correct |
8 |
Correct |
2 ms |
376 KB |
Output is correct |
9 |
Correct |
2 ms |
376 KB |
Output is correct |
10 |
Correct |
2 ms |
376 KB |
Output is correct |