# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
510195 | khaled_whebe | Tarifa (COCI16_tarifa) | C++17 | 0 ms | 320 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>
#define endl '\n'
typedef long long ll;
using namespace std;
const int N=555555;
ll x,n,a[N],me;
int main()
{
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin>>x>>n;
me=x*(n+1);
for (ll i=0;i<n;i++){
cin>>a[i];
me-=a[i];
}
cout<<me<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |