# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
511367 | mohamadsldev | Tarifa (COCI16_tarifa) | C++17 | 1 ms | 204 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 <iostream>
using namespace std;
int main()
{
int x;
cin >> x;
int n;
cin >> n;
int a[n];
int c=0;
for(int i=0;i<n;i++){
c+=x;
cin >> a[i];
c-=a[i];
}
c+=x;
cout << c;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |