제출 #95236

#제출 시각아이디문제언어결과실행 시간메모리
95236MohamedAhmed0Tarifa (COCI16_tarifa)C++14
50 / 50
2 ms376 KiB
#include <bits/stdc++.h>

using namespace std;

int main()
{
    int x , n ;
    cin>>x>>n;
    int now = 0 ;
    for(int i = 0 ; i < n ; ++i)
    {
        now += x ;
        int a ;
        cin>>a ;
        now -= a ;
    }
    return cout<<now+x<<"\n" , 0 ;
}
#Verdict Execution timeMemoryGrader output
Fetching results...