제출 #891709

#제출 시각아이디문제언어결과실행 시간메모리
891709ind1vTarifa (COCI16_tarifa)C++11
50 / 50
1 ms348 KiB
#include <bits/stdc++.h>

using namespace std;

#define int long long

#define sz(x) (int)((x).size())
#define all(x) (x).begin(), (x).end()

const int N = 103;

int p[N];
int x, n, c;

int32_t main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  cin >> x >> n;
  for (int i = 1; i <= n; ++i) {
    cin >> p[i];
    c += x;
    c -= p[i];
  }
  cout << c + x;
  return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...