# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
510026 | NeroZein | Tarifa (COCI16_tarifa) | C++17 | 1 ms | 204 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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);
for (int i = 0; i < n; i++){
cin >> ans ;
x -= ans;
}
cout << x << endl ;
return 0 ;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |