Submission #510025

# Submission time Handle Problem Language Result Execution time Memory
510025 2022-01-14T14:12:36 Z NeroZein Tarifa (COCI16_tarifa) C++17
0 / 50
0 ms 204 KB
#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 fp (ll x , ll y){
    if (y == 0) return 1;
    if (y == 1) return x;
    ll ret = fp(x , y/2) % mod;
    if (y % 2) ret *= x;
    return ret;
}
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 ;
    return 0 ;
}

# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Incorrect 0 ms 204 KB Output isn't correct
3 Incorrect 0 ms 204 KB Output isn't correct
4 Incorrect 0 ms 204 KB Output isn't correct
5 Incorrect 0 ms 204 KB Output isn't correct
6 Incorrect 0 ms 204 KB Output isn't correct
7 Incorrect 0 ms 204 KB Output isn't correct
8 Incorrect 0 ms 204 KB Output isn't correct
9 Incorrect 0 ms 204 KB Output isn't correct
10 Incorrect 0 ms 204 KB Output isn't correct