# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
81630 | xiaowuc1 | 평균 (COCI14_prosjek) | C++14 | 2 ms | 708 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
/*
unsigned seed1 = std::chrono::system_clock::now().time_since_epoch().count();
mt19937 g1.seed(seed1);
ios_base::sync_with_stdio(false);
cin.tie(NULL);
*/
using namespace std;
const double PI = 2 * acos(0);
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<int, ll> pill;
typedef pair<ll, ll> pll;
typedef long double ld;
typedef vector<vector<ll>> matrix;
ll l[105];
ll ret[105];
int n;
int main() {
scanf("%d", &n);
for(int i = 1; i <= n; i++) {
scanf("%lld", &l[i]);
}
ret[1] = l[1];
for(int i = 2; i <= n; i++) {
ret[i] = l[i] * i;
for(int a = 1; a < i; a++) {
ret[i] -= ret[a];
}
}
for(int i = 1; i <= n; i++) {
printf("%lld", ret[i]);
if(i == n) printf("\n");
else printf(" ");
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |