| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 88568 | tushar_2658 | 평균 (COCI14_prosjek) | C++17 | 2 ms | 828 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
#define file freopen("in.txt", "r", stdin);
#define pii pair<int,int>
#define pb push_back
#define all(v) v.begin(), v.end()
#define keepunique(v) (v).erase(unique(all(v)),v.end())
#define fastread ios_base::sync_with_stdio(false);cin.tie(NULL);
const int maxn = 105;
ll arr[maxn], ans[maxn];
int n;
void solve(){
ans[1] = arr[1];
ll sum = arr[1];
for(int i=2; i<=n; i++){
ans[i] = (i*arr[i])-sum;
sum += ans[i];
}
for(int i=1; i<=n; i++)cout<<ans[i]<<" ";
}
int main(){
//file
fastread
cin>>n;
for(int i=1; i<=n; i++)cin>>arr[i];
solve();
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
