Submission #510024

#TimeUsernameProblemLanguageResultExecution timeMemory
510024NeroZeinTarifa (COCI16_tarifa)C++14
0 / 50
1 ms204 KiB
#include <bits/stdc++.h> #define endl "\n" #define sz = s.size() using ll = long long; const int Z = 1e6+9; const int INF = 1e9+9; const int mod = 1e9+7; using namespace std; ll x , n , mn , mx , sum , ans , dif , t , k ; int main(){ ios::sync_with_stdio(0);cin.tie(NULL); cin >> x >> n; x *= (n+1); cout << x << endl; for (int i = 0; i < n; i++){ cin >> ans ; x -= ans; } cout << x << endl ; }
#Verdict Execution timeMemoryGrader output
Fetching results...