제출 #76777

#제출 시각아이디문제언어결과실행 시간메모리
76777dereotuProsjek (COCI14_prosjek)C++17
50 / 50
2 ms568 KiB
#include <bits/stdc++.h>
#define endl '\n'
#define space ' '
#define st first
#define nd second
#define pb push_back
#define mp make_pair
#define ii pair <int,int>
#define iii pair < int,pair <int,int> >
#define vi vector <int>
#define vii vector < pair<int,int> >
#define forr(i,A,B) for(int i=A;i<B;++i)
#define input(file) freopen(file,"r",stdin)
#define output(file) freopen(file,"w",stdout)
using namespace std;

long long n,a[105];

int main(){
	cin>>n;
	forr(i,0,n) cin>>a[i];
	long long total = a[0];
	cout<<a[0]<<space;
	forr(i,1,n){
		long long val = a[i] * (i+1);
		cout<< (val - total) << space;
		total += (val - total);
	}	
	cout<<endl;

	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...